| 38 | |
| 39 | /** Generic struct test */ |
| 40 | export interface PaginationResult<T> { |
| 41 | items: Array<T>; |
| 42 | total_items: number; |
| 43 | } |
| 44 | |
| 45 | /** Generic struct test with camelCase field names. */ |
| 46 | export interface PaginationResultCamel<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected