// generated by unplugin-vue-components // We suggest you to commit this file into source control // Read more: https://github.com/vuejs/core/pull/3399 import '@vue/runtime-core'; export {}; declare module '@vue/runtime-core' { export interface GlobalComponents { NButton: (typeof import('naive-ui'))['NButton']; NInput: (typeof import('naive-ui'))['NInput']; } } // types/leaflet-src-dom-DomEvent.d.ts declare module 'leaflet/src/dom/DomEvent' { export type DomEventHandler = (e?: any) => void; // Attach event listeners. `obj` can be any DOM node or object with event handling. export function on(obj: any, types: string, fn: DomEventHandler, context?: any): void; // Detach event listeners. export function off(obj: any, types: string, fn?: DomEventHandler, context?: any): void; // Prevent default on native events export function preventDefault(ev?: Event | undefined): void; // Optional: other helpers you might need later export function stopPropagation(ev?: Event | undefined): void; export function stop(ev?: Event | undefined): void; }