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