Skip to content

qudo-code/sms-template---plugin

Repository files navigation

⬅ Back to 🔌

🔌 Plugin Development Template

Template for developing State Machine Snacks plugins.

Script Description
npm run dev Start the dev server.
npm run build Build project.
npm run serve Serve a static copy of the build.
export default (options = {}) => ({
    config : (config = false) => {
        // Modify state machine config.
        // Utilize configEditor when possible.

        // Must return object to be new config.
    },

    service : (config = false, service = false) => {
        // Access the service as well as the config used to generate the service.

        // Doesn't need to return anything.
    },
});

// You can export helper functions for the users of your plugin.
const exampleHelper = () => {

};

export {
    exampleHelper,
};

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published