parcel/scripts/global.d.ts
Blake Rain 73c8d08a65
All checks were successful
Check / check (push) Successful in 1m2s
Deploy / build (push) Successful in 2m2s
fix: add global declaration file for htmx in TypeScript
This is needed after change in HTMX 2.0.2
2024-08-13 19:22:43 +01:00

10 lines
123 B
TypeScript

import Htmx from "htmx.org";
declare global {
var htmx: typeof Htmx;
interface Window {
htmx: typeof Htmx;
}
}