Files
baronessv2/global.d.ts
2025-09-21 17:41:48 +02:00

18 lines
303 B
TypeScript

// global.d.ts
import { IStaticMethods } from "flyonui/flyonui";
declare global {
interface Window {
// Optional third-party libraries
_;
$: typeof import("jquery");
jQuery: typeof import("jquery");
DataTable;
Dropzone;
HSStaticMethods: IStaticMethods;
}
}
export {};