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

6 lines
102 B
TypeScript
Raw Normal View History

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