UNPKG

@builder.io/sdk-vue

Version:
15 lines (14 loc) 511 B
import type { BuilderContextInterface } from '../../context/types'; import type { BuilderContent } from '../../types/builder-content'; export interface SymbolInfo { model?: string; entry?: string; data?: any; content?: BuilderContent; inline?: boolean; dynamic?: boolean; } export declare const fetchSymbolContent: ({ builderContextValue, symbol }: { symbol: SymbolInfo | undefined; builderContextValue: BuilderContextInterface; }) => Promise<BuilderContent | null | undefined>;