UNPKG

@builder.io/sdk-vue

Version:
16 lines (15 loc) 470 B
import type { BuilderContextInterface, RegisteredComponents } from '../context/types'; import type { BuilderBlock } from './builder-block'; export type BuilderDataProps = { builderBlock: BuilderBlock; builderContext: BuilderContextInterface; }; export type BuilderComponentsProp = { builderComponents: RegisteredComponents; }; export type BuilderLinkComponentProp = { builderLinkComponent?: any; }; export type BuilderNonceProp = { nonce: string; };