Files
custum-hyprpanel/globals.d.ts

16 lines
426 B
TypeScript

// globals.d.ts
/* eslint-disable no-var */
import { Options, Variable as VariableType } from 'types/variable';
declare global {
var globalMousePos: VariableType<number[]>;
var useTheme: (filePath: string) => void;
var isWindowVisible: (windowName: string) => boolean;
var globalWeatherVar: VariableType<Weather>;
var options: Options;
var removingNotifications: VariableType<boolean>;
}
export {};