14 lines
322 B
TypeScript
14 lines
322 B
TypeScript
// globals.d.ts
|
|
|
|
import { Options, Variable as VariableType } from "types/variable";
|
|
|
|
declare global {
|
|
var globalMousePos: VariableType<number[]>;
|
|
var useTheme: Function;
|
|
var globalWeatherVar: VariableType<Weather>;
|
|
var options: Options
|
|
var removingNotifications: VariableType<boolean>;
|
|
}
|
|
|
|
export { };
|