theatre/packages/playground/devEnv/timer.d.ts

5 lines
102 B
TypeScript

/** Create timer */
export function timer(name: string): {
wrap<T>(fn: () => T): T
stop(): void
}