Initialisation
Added the packages and files for the backend server
This commit is contained in:
9
node_modules/@apollo/server/dist/esm/internalPlugin.d.ts
generated
vendored
Normal file
9
node_modules/@apollo/server/dist/esm/internalPlugin.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { BaseContext, ApolloServerPlugin } from './externalTypes/index.js';
|
||||
export interface InternalApolloServerPlugin<TContext extends BaseContext> extends ApolloServerPlugin<TContext> {
|
||||
__internal_plugin_id__: InternalPluginId;
|
||||
__is_disabled_plugin__: boolean;
|
||||
}
|
||||
export declare function internalPlugin<TContext extends BaseContext>(p: InternalApolloServerPlugin<TContext>): ApolloServerPlugin<TContext>;
|
||||
export type InternalPluginId = 'CacheControl' | 'LandingPageDisabled' | 'SchemaReporting' | 'InlineTrace' | 'UsageReporting' | 'DisableSuggestions';
|
||||
export declare function pluginIsInternal<TContext extends BaseContext>(plugin: ApolloServerPlugin<TContext>): plugin is InternalApolloServerPlugin<TContext>;
|
||||
//# sourceMappingURL=internalPlugin.d.ts.map
|
||||
Reference in New Issue
Block a user