Initial Save

This commit is contained in:
jackbeeby
2025-03-28 12:30:19 +11:00
parent e381994f19
commit d8773925e8
9910 changed files with 982718 additions and 0 deletions

22
node_modules/apollo-server-core/dist/playground.d.ts generated vendored Normal file
View File

@@ -0,0 +1,22 @@
import { CursorShape, RenderPageOptions as PlaygroundRenderPageOptions, Theme } from '@apollographql/graphql-playground-html/dist/render-playground-page';
export { RenderPageOptions as PlaygroundRenderPageOptions, } from '@apollographql/graphql-playground-html/dist/render-playground-page';
declare type RecursivePartial<T> = {
[P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends (object | undefined) ? RecursivePartial<T[P]> : T[P];
};
export declare type PlaygroundConfig = RecursivePartial<PlaygroundRenderPageOptions> | boolean;
export declare const defaultPlaygroundOptions: {
version: string;
settings: {
'general.betaUpdates': boolean;
'editor.theme': Theme;
'editor.cursorShape': CursorShape;
'editor.reuseHeaders': boolean;
'tracing.hideTracingResponse': boolean;
'queryPlan.hideQueryPlanResponse': boolean;
'editor.fontSize': number;
'editor.fontFamily': string;
'request.credentials': string;
};
};
export declare function createPlaygroundOptions(playground?: PlaygroundConfig): PlaygroundRenderPageOptions | undefined;
//# sourceMappingURL=playground.d.ts.map