| 4 | export class InternalArktypeError extends Error {} |
| 5 | |
| 6 | export const throwInternalError: (message: string) => never = message => |
| 7 | throwError(message, InternalArktypeError) |
| 8 | |
| 9 | export const throwError: ( |
| 10 | message: string, |
no test coverage detected
searching dependent graphs…