vatom-spaces-plugins
v1.1.10
Published
Provides support and utility for external plugin development for the Vatom Spaces platform
Downloads
25
Readme
Vatom Spaces Plugin Intellisense :computer:
Provides intellisense in your editor when developing plugins for Vatom Spaces.
For additional information about the plugin development process, you can visit :page_facing_up:our developer portal.
Install :hammer:
To install this packages, you can run the command below:
npm install vatom-spaces-plugins --save
Usage :cd:
This package exports two classes, BasePlugin
and BaseComponent
.
To use these classes, you can import them as follows:
// ES6 import
import { BasePlugin, BaseComponent } from 'vatom-spaces-plugins'
// or CommonJS import
const VatomSpacesPlugins = require('vatom-spaces-plugins')
// use as `VatomSpacesPlugins.BasePlugin` and `VatomSpacesPlugins.BaseComponent`