UNPKG

node-updown

Version:

Transparent Node.JS wrapper for the updown.io API

9 lines (8 loc) 285 B
import { Check } from '../types/Check'; export interface GetCheckOptions { /** * Include performance metrics for the last hour */ metrics?: boolean; } export declare function getCheck(apiKey: string, token: string, options?: GetCheckOptions): Promise<Check>;