/** * Context passed to predicate functions and other utilities. * @alpha */ export type FoundationAppContext = { env?: string; domain?: string; user?: {}; answers?: { framework: string; [key: string]: any; }; featureFlags?: { [key: string]: any; }; [key: string]: any; }; //# sourceMappingURL=app.d.ts.map