UNPKG

node-updown

Version:

Transparent Node.JS wrapper for the updown.io API

9 lines (8 loc) 299 B
import { Downtime } from '../types/Downtime'; export interface GetDowntimesOptions { /** * The page to fetch (100 results per page) */ page?: number; } export declare function getDowntimes(apiKey: string, token: string, options?: GetDowntimesOptions): Promise<Downtime[]>;