index.d.ts 494 B

12345678910
  1. import type { Logger } from '@apollo/utils.logger';
  2. import retry from 'async-retry';
  3. import type { ApolloServerPlugin } from '../../externalTypes/index.js';
  4. export interface ApolloServerPluginSubscriptionCallbackOptions {
  5. maxConsecutiveHeartbeatFailures?: number;
  6. logger?: Logger;
  7. retry?: retry.Options;
  8. }
  9. export declare function ApolloServerPluginSubscriptionCallback(options?: ApolloServerPluginSubscriptionCallbackOptions): ApolloServerPlugin;
  10. //# sourceMappingURL=index.d.ts.map