fix(client): typecheck

This commit is contained in:
Elian Doran 2025-09-14 20:16:38 +03:00
parent 5b5f3233d8
commit adae78e747
No known key found for this signature in database

View File

@ -51,3 +51,12 @@ declare module "leaflet" {
markers?: GPXMarker | undefined;
}
}
declare global {
interface Navigator {
/** Returns a boolean indicating whether the browser is running in standalone mode. Available on Apple's iOS Safari only. */
standalone?: boolean;
/** Returns the WindowControlsOverlay interface which exposes information about the geometry of the title bar in desktop Progressive Web Apps, and an event to know whenever it changes. */
windowControlsOverlay?: unknown;
}
}