( type: T, value: DynoJsType<T>, )
| 231 | } |
| 232 | |
| 233 | export function dynoConst<T extends DynoType>( |
| 234 | type: T, |
| 235 | value: DynoJsType<T>, |
| 236 | ): DynoConst<T> { |
| 237 | return new DynoConst(type, value); |
| 238 | } |
| 239 | |
| 240 | export function literalZero(type: SimpleTypes): string { |
| 241 | const typeString = String(type); |
no outgoing calls
no test coverage detected