(data: object)
| 14 | } |
| 15 | |
| 16 | export function getGraphNextPageUrl(data: object): string | undefined { |
| 17 | const nextLink = (data as Record<string, unknown>)['@odata.nextLink'] |
| 18 | return typeof nextLink === 'string' ? nextLink : undefined |
| 19 | } |
| 20 | |
| 21 | export function assertGraphNextPageUrl(nextPageUrl: string): string { |
| 22 | const trimmed = nextPageUrl.trim() |
no outgoing calls
no test coverage detected