📄 Performance.d.ts
/home/palash/git/site/node_modules/fork-ts-checker-webpack-plugin/lib/profile/Performance.d.ts
Language: ts • Lines: 11
interface Performance {
    enable(): void;
    disable(): void;
    mark(name: string): void;
    markStart(name: string): void;
    markEnd(name: string): void;
    measure(name: string, startMark?: string, endMark?: string): void;
    print(): void;
}
declare function createPerformance(): Performance;
export { Performance, createPerformance };