Files
est-frame/node_modules/fork-ts-checker-webpack-plugin/lib/profile/Performance.d.ts
2025-10-22 05:38:27 +00:00

12 lines
349 B
TypeScript
Executable File

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