polen
Version:
A framework for delightful GraphQL developer portals
17 lines • 428 B
TypeScript
/**
* Default Polen global data structure
* This ensures we always have a consistent shape for hydration
*/
export declare const DEFAULT_POLEN_DATA: {
readonly serverContext: {
readonly theme: "light";
readonly isDev: false;
};
};
export type PolenGlobalData = {
serverContext: {
theme: 'light' | 'dark' | 'system';
isDev: boolean;
};
};
//# sourceMappingURL=constants.d.ts.map