You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
394 B
11 lines
394 B
import { __extends } from "tslib";
|
|
import { AsyncScheduler } from './AsyncScheduler';
|
|
var QueueScheduler = (function (_super) {
|
|
__extends(QueueScheduler, _super);
|
|
function QueueScheduler() {
|
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
}
|
|
return QueueScheduler;
|
|
}(AsyncScheduler));
|
|
export { QueueScheduler };
|
|
//# sourceMappingURL=QueueScheduler.js.map
|