|
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 | |
|---|
| 1 | interface 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 | }
|
|---|
| 10 | declare function createPerformance(): Performance;
|
|---|
| 11 | export { Performance, createPerformance };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.