Files
custum-hyprpanel/globals.d.ts
Jas Singh 51581b198f Implemented a callable function that sets the wallpaper. (#463)
* Implemented a callable function that sets the wallpaper.

* Remove log
2024-11-08 20:56:47 -08:00

19 lines
520 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 setWallpaper: (filePath: string) => void;
var globalWeatherVar: VariableType<Weather>;
var options: Options;
var removingNotifications: VariableType<boolean>;
}
export {};