UNPKG

@builder.io/sdk-vue

Version:
11 lines (10 loc) 405 B
import type { BuilderContextInterface } from '../context/types'; import type { BuilderBlock } from '../types/builder-block'; type Actions = { [index: string]: (event: Event) => any; }; export declare function getBlockActions(options: { block: BuilderBlock; stripPrefix?: boolean; } & Pick<BuilderContextInterface, 'localState' | 'context' | 'rootState' | 'rootSetState'>): Actions; export {};