File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ export * from './routes/index.js'
14
14
export * from './seam-http-error.js'
15
15
export * from './seam-http-request.js'
16
16
export * from './seam-paginator.js'
17
- export * from './seam-paginator.js'
18
17
export {
19
18
isApiKey ,
20
19
isClientSessionToken ,
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ interface SeamPaginatorParent {
9
9
10
10
declare const $brand : unique symbol
11
11
12
- type PageCursor = string & { [ $brand ] : 'SeamPageCursor' }
12
+ export type SeamPageCursor = string & { [ $brand ] : 'SeamPageCursor' }
13
13
14
14
interface Pagination {
15
15
readonly hasNextPage : boolean
16
- readonly nextPageCursor : PageCursor | null
16
+ readonly nextPageCursor : SeamPageCursor | null
17
17
readonly nextPageUrl : string | null
18
18
}
19
19
@@ -150,6 +150,6 @@ type EnsureMutableArray<T> = T extends any[] ? T : never
150
150
151
151
interface PaginationData {
152
152
has_next_page : boolean
153
- next_page_cursor : PageCursor | null
153
+ next_page_cursor : SeamPageCursor | null
154
154
next_page_url : string | null
155
155
}
You can’t perform that action at this time.
0 commit comments