source: frontend/node_modules/fork-ts-checker-webpack-plugin/lib/profile/Performance.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 349 bytes
Line 
1interface Performance {
2 enable(): void;
3 disable(): void;
4 mark(name: string): void;
5 markStart(name: string): void;
6 markEnd(name: string): void;
7 measure(name: string, startMark?: string, endMark?: string): void;
8 print(): void;
9}
10declare function createPerformance(): Performance;
11export { Performance, createPerformance };
Note: See TracBrowser for help on using the repository browser.