@payloadcms/plugin-form-builder
Version:
Form builder plugin for Payload CMS
14 lines • 451 B
TypeScript
export type HTMLConverter<T = any> = {
converter: ({ childIndex, converters, node, parent, submissionData, }: {
childIndex: number;
converters: HTMLConverter[];
node: T;
parent: SerializedLexicalNodeWithParent;
submissionData?: any;
}) => Promise<string> | string;
nodeTypes: string[];
};
export type SerializedLexicalNodeWithParent = {
parent?: any;
} & any;
//# sourceMappingURL=types.d.ts.map