index.d.ts 425 B

123456789
  1. /// <reference types="node" />
  2. import type http from 'http';
  3. import type { ApolloServerPlugin } from '../../externalTypes/index.js';
  4. export interface ApolloServerPluginDrainHttpServerOptions {
  5. httpServer: http.Server;
  6. stopGracePeriodMillis?: number;
  7. }
  8. export declare function ApolloServerPluginDrainHttpServer(options: ApolloServerPluginDrainHttpServerOptions): ApolloServerPlugin;
  9. //# sourceMappingURL=index.d.ts.map