UNPKG

openapi-connect

Version:
17 lines (16 loc) 560 B
import { IOption, IOptionalOption } from './option'; export interface IGracefulShutdownOptions extends IOptionalOption { readinessProbe?: { failureThreshold: number; periodSeconds: number; }; } export interface IGracefulShutdownOptionsWithDefaults extends IGracefulShutdownOptions, IOption { enable: boolean; readinessProbe: { failureThreshold: number; periodSeconds: number; }; } declare const _default: (options?: IGracefulShutdownOptions) => IGracefulShutdownOptionsWithDefaults; export default _default;