Fully functional

This commit is contained in:
sebivh
2025-09-21 17:41:48 +02:00
parent 09bce907ba
commit 31034cb81d
11 changed files with 693 additions and 51 deletions

17
global.d.ts vendored Normal file
View File

@@ -0,0 +1,17 @@
// 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 {};