instrumentation.d.ts
10 lines
| 273 B
| video/mp2t
|
TypeScriptLexer
|
|
r2 | import { DeferredConstructor } from "../Deferred"; | |
| interface Instrumentation { | |||
| /** | |||
| * Initialize instrumentation for the Deferred class. | |||
| */ | |||
| (Deferred: DeferredConstructor): void; | |||
| } | |||
| declare const Instrumentation: Instrumentation; | |||
| export = Instrumentation; |
