ludus/out/goog/promise/resolver.js
2023-11-16 13:22:15 -05:00

21 lines
477 B
JavaScript

/*TRANSPILED*/goog.loadModule(function(exports) {'use strict';/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
'use strict';
goog.module("goog.promise.Resolver");
goog.module.declareLegacyNamespace();
const GoogPromise = goog.requireType("goog.Promise");
const Thenable = goog.requireType("goog.Thenable");
class Resolver {
constructor() {
this.promise;
this.resolve;
this.reject;
}
}
exports = Resolver;
;return exports;});