src_Declarations_ActionDeclaration.js

/**
 * Represents a JSONStorableAction in the Scripter plugin
 */

export class ActionDeclaration {
    /**
     * Called when the action is triggered
     * @param {function(): void} callback
     */
    onTrigger(callback) { }
}