##// END OF EJS Templates
DjxWidgetBase: implemented copying content from srcNode to contentNode
DjxWidgetBase: implemented copying content from srcNode to contentNode

File last commit:

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