vsf-lexascms
Version:
Official LexasCMS module for Vue Storefront (Next).
16 lines (15 loc) • 422 B
TypeScript
import { LexascmsContent } from '../types/lexascms';
export declare const extractContent: (content: LexascmsContent | null) => {
componentName: string;
props: {
[prop: string]: any;
type: string;
id: string;
};
}[];
export declare const RenderContent: {
render: (createElement: any) => any;
props: {
content: import("vue").PropOptions<{} | []>;
};
};