(str: VStr['value'])
| 108 | }); |
| 109 | |
| 110 | export const STR = (str: VStr['value']): VStr => ({ |
| 111 | type: 'str' as const, |
| 112 | value: str, |
| 113 | }); |
| 114 | |
| 115 | export const BOOL = (bool: VBool['value']): VBool => ({ |
| 116 | type: 'bool' as const, |
no outgoing calls
no test coverage detected