8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
export {};
|
|
|
|
declare global {
|
|
interface Window {
|
|
fetchWithHtmxTriggers(input: RequestInfo | URL, init?: RequestInit): Promise<Response>;
|
|
}
|
|
}
|