UNPKG

@foxpage/foxpage-types

Version:

foxpage sdk types

7 lines (6 loc) 242 B
import { Context } from '../context'; import { Page } from '../manager'; export interface FoxpageDSLHooks { beforeDSLFetch?: (ctx: Context) => Promise<any>; afterDSLFetch?: (ctx: Context, page: Page | null) => Promise<Page | null>; }