18 lines
303 B
TypeScript
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 {};
|