(options?: { async?: boolean })
| 130 | interface RunnableSuite { |
| 131 | on(type: string, callback: (event: Benchmark.Event) => void): this |
| 132 | run(options?: { async?: boolean }): unknown |
| 133 | } |
| 134 | |
| 135 | export function runSuite(suite: RunnableSuite): Promise<void> { |
no outgoing calls