/*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;});