(bool: VBool['value'])
| 113 | }); |
| 114 | |
| 115 | export const BOOL = (bool: VBool['value']): VBool => ({ |
| 116 | type: 'bool' as const, |
| 117 | value: bool, |
| 118 | }); |
| 119 | |
| 120 | export const OBJ = (obj: VObj['value']): VObj => ({ |
| 121 | type: 'obj' as const, |
no outgoing calls
no test coverage detected