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