monaco-editor
Version:
A browser based code editor
12 lines (11 loc) • 519 B
JavaScript
var SyncDescriptor = /** @class */ (function () {
function SyncDescriptor(ctor, staticArguments, supportsDelayedInstantiation) {
if (staticArguments === void 0) { staticArguments = []; }
if (supportsDelayedInstantiation === void 0) { supportsDelayedInstantiation = false; }
this.ctor = ctor;
this.staticArguments = staticArguments;
this.supportsDelayedInstantiation = supportsDelayedInstantiation;
}
return SyncDescriptor;
}());
export { SyncDescriptor };