UNPKG

graphql-yoga

Version:

[![GraphQL Conf 2023](/GraphQLConf-2023-Banner.png)](https://graphql.org/conf/)

9 lines (8 loc) 302 B
import { YogaLogger } from '@graphql-yoga/logger'; import { Plugin } from './types.cjs'; export interface HealthCheckPluginOptions { id?: string; logger?: YogaLogger; endpoint?: string; } export declare function useHealthCheck({ id, logger, endpoint, }?: HealthCheckPluginOptions): Plugin;