summaryrefslogtreecommitdiff
path: root/tools/ts_library_builder/testdata/globals.ts
blob: 9d117c7948eabd49e90dc57695e8033f0674c984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as moduleC from "./moduleC";
import * as moduleD from "./moduleD";
import * as moduleE from "./moduleE";

// tslint:disable-next-line:no-any
const foobarbaz: any = {};
foobarbaz.bar = new moduleC.Bar();
foobarbaz.qat = moduleC.qat;
foobarbaz.process = moduleE.process;
foobarbaz.reprocess = moduleD.reprocess;
foobarbaz.Bar = moduleC.Bar;
export type Bar = moduleC.Bar;