@subsquid/apollo-server-core
Version:
Core engine for Apollo GraphQL server
9 lines • 422 B
TypeScript
/// <reference types="node" />
import type http from 'http';
import type { ApolloServerPlugin } from 'apollo-server-plugin-base';
export interface ApolloServerPluginDrainHttpServerOptions {
httpServer: http.Server;
stopGracePeriodMillis?: number;
}
export declare function ApolloServerPluginDrainHttpServer(options: ApolloServerPluginDrainHttpServerOptions): ApolloServerPlugin;
//# sourceMappingURL=index.d.ts.map