kennzeichen/frontend/global.d.ts
2025-10-23 12:11:41 +02:00

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 {};