this repo has no description
at v1.0.2 846 B view raw
1/// <reference types="node" /> 2/// <reference types="standalone-electron-types" /> 3/// <reference types="react" /> 4/// <reference types="flux" /> 5/// <reference types="./import" /> 6/* eslint-disable no-var */ 7 8import { 9 MoonlightEnv, 10 MoonlightHost, 11 MoonlightNode, 12 MoonlightWeb 13} from "./globals"; 14 15export * from "./discord"; 16export * from "./config"; 17export * from "./extension"; 18export * as CoreExtensions from "./coreExtensions"; 19export * from "./globals"; 20export * from "./logger"; 21export * as constants from "./constants"; 22 23declare global { 24 const MOONLIGHT_ENV: MoonlightEnv; 25 const MOONLIGHT_PROD: boolean; 26 const MOONLIGHT_INJECTOR: boolean; 27 const MOONLIGHT_NODE_PRELOAD: boolean; 28 const MOONLIGHT_WEB_PRELOAD: boolean; 29 30 var moonlightHost: MoonlightHost; 31 var moonlightNode: MoonlightNode; 32 var moonlight: MoonlightWeb; 33}