UNPKG

@builder.io/sdk-vue

Version:
20 lines (19 loc) 609 B
import type { BuilderContent } from '../../types/builder-content'; import type { BuilderComponentsProp, BuilderDataProps, BuilderLinkComponentProp } from '../../types/builder-props'; interface SymbolInfo { model?: string; entry?: string; data?: any; content?: BuilderContent; inline?: boolean; dynamic?: boolean; } export interface SymbolProps extends BuilderComponentsProp, BuilderDataProps, BuilderLinkComponentProp { symbol?: SymbolInfo; dataOnly?: boolean; dynamic?: boolean; attributes?: any; inheritState?: boolean; renderToLiquid?: boolean; } export {};