UNPKG

710 BPlain TextView Raw
1// Copyright 2019 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// @ts-nocheck
6
7import * as FormatterModule from './formatter.js';
8
9self.Formatter = self.Formatter || {};
10Formatter = Formatter || {};
11
12/** @constructor */
13Formatter.FormatterWorkerPool = FormatterModule.FormatterWorkerPool.FormatterWorkerPool;
14
15Formatter.formatterWorkerPool = FormatterModule.FormatterWorkerPool.formatterWorkerPool;
16
17/** @interface */
18Formatter.FormatterSourceMapping = FormatterModule.ScriptFormatter.FormatterSourceMapping;
19
20/** @constructor */
21Formatter.SourceFormatter = FormatterModule.SourceFormatter.SourceFormatter;