Skip to content

Commit 31432e2

Browse files
committed
ページネーションのパラメータnumber型に変更
1 parent 7d7c7d9 commit 31432e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/client/options.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { Tagging } from '../entities/Tagging';
22

33
export interface PaginationOptions {
44
/** ページ番号 (1から100まで) */
5-
page?: string;
5+
page?: number;
66
/** 1ページあたりに含まれる要素数 (1から100まで) */
7-
per_page?: string;
7+
per_page?: number;
88
}
99

1010
export interface FetchTagsOptions extends PaginationOptions {

0 commit comments

Comments
 (0)