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'
1414export * from './seam-http-error.js'
1515export * from './seam-http-request.js'
1616export * from './seam-paginator.js'
17- export * from './seam-paginator.js'
1817export {
1918 isApiKey ,
2019 isClientSessionToken ,
Original file line number Diff line number Diff line change @@ -9,11 +9,11 @@ interface SeamPaginatorParent {
99
1010declare const $brand : unique symbol
1111
12- type PageCursor = string & { [ $brand ] : 'SeamPageCursor' }
12+ export type SeamPageCursor = string & { [ $brand ] : 'SeamPageCursor' }
1313
1414interface Pagination {
1515 readonly hasNextPage : boolean
16- readonly nextPageCursor : PageCursor | null
16+ readonly nextPageCursor : SeamPageCursor | null
1717 readonly nextPageUrl : string | null
1818}
1919
@@ -150,6 +150,6 @@ type EnsureMutableArray<T> = T extends any[] ? T : never
150150
151151interface PaginationData {
152152 has_next_page : boolean
153- next_page_cursor : PageCursor | null
153+ next_page_cursor : SeamPageCursor | null
154154 next_page_url : string | null
155155}
You can’t perform that action at this time.
0 commit comments