Generic struct test with camelCase field names.
| 44 | |
| 45 | /** Generic struct test with camelCase field names. */ |
| 46 | interface PaginationResultCamel<T> { |
| 47 | items: Array<T>; |
| 48 | totalItems: number; |
| 49 | } |
| 50 | |
| 51 | /** Struct with flattened field. */ |
| 52 | type Author = AuthorName & { |
nothing calls this directly
no outgoing calls
no test coverage detected