-
Notifications
You must be signed in to change notification settings - Fork 4
/
global.d.ts
39 lines (38 loc) · 1.01 KB
/
global.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
declare global {
interface Window {
daum: {
Postcode: new (options: { oncomplete: (data: any) => void }) => any;
};
kakao: {
maps: {
LatLng: new (lat: number, lng: number) => any;
Map: new (
container: HTMLElement,
options: { center: any; level: number }
) => any;
Marker: new (options: { position: any; map: any }) => any;
InfoWindow: new (options: { content: string }) => any;
MarkerClusterer: new (options: {
map: any;
averageCenter?: boolean;
minLevel?: number;
}) => any;
services: {
Geocoder: new () => {
addressSearch: (
address: string,
callback: (result: any[], status: string) => void
) => void;
};
Status: {
OK: string;
};
};
event: {
addListener: (target: any, type: string, callback: () => void) => void;
};
};
};
}
}
export {};