vue-simple-range-slider
Version:
Change Your numeric value or numeric range value with dragging handles
12 lines (11 loc) • 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 };