Files
GNX-mailEnterprise/frontend/node_modules/fork-ts-checker-webpack-plugin/lib/profile/Performance.d.ts
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03:00

12 lines
349 B
TypeScript

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 };