From 45fb9ef0fcd878108ed1f5cb759fc14867c7af39 Mon Sep 17 00:00:00 2001 From: origin1508 Date: Wed, 21 Dec 2022 17:03:11 +0900 Subject: [PATCH 1/2] fix: add first, last type into Pagination --- @types/Pagination.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/@types/Pagination.d.ts b/@types/Pagination.d.ts index 286d08c..d98eec8 100644 --- a/@types/Pagination.d.ts +++ b/@types/Pagination.d.ts @@ -50,5 +50,15 @@ declare namespace kakao.maps { * 현재 페이지 번호 */ current: number; + + /** + * 첫번째 페이지 번호 + */ + first: number; + + /** + * 마지막 페이지 번호 + */ + last: number; } } From bedc4b4354a8f89a9bfc7aa226122bd53376a1e2 Mon Sep 17 00:00:00 2001 From: origin1508 Date: Mon, 27 Mar 2023 12:09:51 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20first=EC=99=80=20last=EC=97=90=20exp?= =?UTF-8?q?erimental=20tag=EB=A5=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- @types/Pagination.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/@types/Pagination.d.ts b/@types/Pagination.d.ts index d98eec8..7e3ab53 100644 --- a/@types/Pagination.d.ts +++ b/@types/Pagination.d.ts @@ -53,11 +53,13 @@ declare namespace kakao.maps { /** * 첫번째 페이지 번호 + * @experimental */ first: number; /** * 마지막 페이지 번호 + * @experimental */ last: number; }