@builder.io/sdk-vue
Version:
Builder.io SDK for Vue
16 lines (15 loc) • 470 B
TypeScript
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;
};