(input: string)
| 27 | // ── Helpers ─────────────────────────────────────────────────────────────────── |
| 28 | |
| 29 | const errors = (input: string) => parse(input, schema).meta.errors; |
| 30 | const codes = (input: string) => errors(input).map((e: { code: string }) => e.code); |
| 31 | |
| 32 | // ── unknown-component ──────────────────────────────────────────────────────── |
no test coverage detected