summaryrefslogtreecommitdiff
path: root/node_modules/pigeon-maps/lib/utils.d.ts
diff options
context:
space:
mode:
authorAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-08-18 13:29:54 +0300
committerAlexander Neonxp Kiryukhin <i@neonxp.ru>2024-08-18 13:29:54 +0300
commitfd70f95224374d23157ee7c0357733102cd0df53 (patch)
treee490c12e021cedaf211b292d5d623baa32a673fc /node_modules/pigeon-maps/lib/utils.d.ts
initialHEADmaster
Diffstat (limited to 'node_modules/pigeon-maps/lib/utils.d.ts')
-rw-r--r--node_modules/pigeon-maps/lib/utils.d.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/node_modules/pigeon-maps/lib/utils.d.ts b/node_modules/pigeon-maps/lib/utils.d.ts
new file mode 100644
index 0000000..c4a6d46
--- /dev/null
+++ b/node_modules/pigeon-maps/lib/utils.d.ts
@@ -0,0 +1,6 @@
+export declare function debounce<T extends (...args: any[]) => any>(func: T, wait: number): (this: any, ...args: Parameters<T>) => void;
+export declare function parentHasClass(element: HTMLElement, className: string): boolean;
+export declare function parentPosition(element: HTMLElement): {
+ x: number;
+ y: number;
+};