UNPKG

@hg8496/gridvis-client

Version:

A library to access all GridVis data

10 lines (9 loc) 405 B
import { AxiosInstance } from "axios"; import { IDevice } from "../device"; import { IProject } from "../project"; import { ITransient } from "./ITransient"; export declare class TransientsEndpoint { private client; constructor(client: AxiosInstance); getTransients(project: string | IProject, device: number | IDevice, start: string, end: string, timezone?: string): Promise<ITransient[]>; }