UNPKG

@ultipa-graph/ultipa-node-sdk

Version:

NodeJS SDK for ultipa-server 4.0

16 lines (15 loc) 379 B
export interface TimeRecordItem { title: string; startTime: number; endTime?: number; } export declare class TimeRecordManager { totalRecord: TimeRecordItem; records: TimeRecordItem[]; constructor(titleTotal?: string); private _findExist; start(title: string): void; stop(title: string): void; stopTotal(): void; toString(): string; }