UNPKG

@marxlnfcs/wildduck-api

Version:

Provides a client to interact with the wildduck api

12 lines (11 loc) 313 B
export declare function createDurationCalculator(): DurationCalculator; export declare class DurationCalculator { private _startDate; private _endDate; get startDate(): Date; get endDate(): Date; start(): this; stop(): this; get duration(): number; get durationString(): string; }