(value: any)
| 26 | } |
| 27 | |
| 28 | isCoercible(value: any): boolean { |
| 29 | if (value == null) return true; |
| 30 | if (!Array.isArray(value)) { |
| 31 | return false; |
| 32 | } |
| 33 | return value.every(i => this.itemType.isCoercible(i)); |
| 34 | } |
| 35 | |
| 36 | defaultValue(): T[] { |
| 37 | return []; |
nothing calls this directly
no test coverage detected