UNPKG

305 BPlain TextView Raw
1export * from "./src/index"
2
3
4import * as RootTSAll from "./src/index"
5
6if (typeof global["RootTSEnvironment"] !== "undefined") {
7 for (let key in global["RootTSEnvironment"]) {
8 module.exports[key] = global["RootTSEnvironment"][key]
9 }
10} else {
11 global["RootTSEnvironment"] = RootTSAll
12}