Files
custum-hyprpanel/globals.d.ts
Jas Singh a4f5fb5917 Refactor Polling Mechanism: Implement Class-Based Poller with Start/Stop Control (#528)
* custom module updates to class based.

* Finish poller logic.

* Use composition for pollers

* Rename poller

* Handle recorder polling.

* Fix quotes in bash command

* Remove logs
2024-11-23 03:55:00 -08:00

19 lines
551 B
TypeScript

/* 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 setLayout: (layout: string) => string;
var clearAllNotifications: () => Promise<void>;
var setWallpaper: (filePath: string) => void;
var globalWeatherVar: VariableType<Weather>;
var options: Options;
var removingNotifications: VariableType<boolean>;
}
export {};