@foxpage/foxpage-types
Version:
foxpage sdk types
9 lines (8 loc) • 358 B
TypeScript
import { Context } from '../context';
import { StructureNode } from '../structure';
export interface FoxpageBuildHooks {
beforeNodeBuild?: (ctx: Context, node: StructureNode) => any;
afterNodeBuild?: (ctx: Context, node: StructureNode) => any;
beforePageBuild?: (ctx: Context) => any;
afterPageBuild?: (ctx: Context, elements: any) => any;
}