Files
custum-hyprpanel/globals.d.ts

18 lines
470 B
TypeScript

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