interface AddonBlockOptions {
    arguments: string[];
    hidden?: boolean;
    procedureCode: string;
    callback(
        args: Record<string, string | number | boolean>,
        util: BlockUtility,
    ): void;
}

Hierarchy (View Summary)

Properties

arguments: string[]
hidden?: boolean
procedureCode: string

Methods