21 lines
418 B
TypeScript
21 lines
418 B
TypeScript
import type { IStaticMethods } from "preline/dist";
|
|
|
|
declare global {
|
|
interface Window {
|
|
// Optional third-party libraries
|
|
_;
|
|
$: typeof import("jquery");
|
|
jQuery: typeof import("jquery");
|
|
DataTable;
|
|
Dropzone;
|
|
VanillaCalendarPro;
|
|
|
|
// Preline UI
|
|
HSStaticMethods: IStaticMethods;
|
|
|
|
// ApexCharts helper (Preline)
|
|
buildTooltip?: (...args: any[]) => string;
|
|
}
|
|
}
|
|
|
|
export {}; |