Skip to content

Commit 003172d

Browse files
committed
fix: add deprecated annotation for daum namespaces
1 parent 775f8ca commit 003172d

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/loadPostcode.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
declare global {
22
interface Window {
33
daum?: {
4+
/**
5+
* @deprecated Use kakao.postcode instead.
6+
*/
47
postcode: {
58
load: (fn: () => void) => void;
69
version: string;
710
_validParam_: boolean;
811
};
12+
/**
13+
* @deprecated Use kakao.postcode instead.
14+
*/
915
Postcode: PostcodeConstructor;
1016
};
1117
kakao?: {

0 commit comments

Comments
 (0)