(obj: VObj['value'])
| 118 | }); |
| 119 | |
| 120 | export const OBJ = (obj: VObj['value']): VObj => ({ |
| 121 | type: 'obj' as const, |
| 122 | value: obj, |
| 123 | }); |
| 124 | |
| 125 | export const ARR = (arr: VArr['value']): VArr => ({ |
| 126 | type: 'arr' as const, |
no outgoing calls
no test coverage detected