(ts_type: String)
| 6 | |
| 7 | impl From<String> for TsType { |
| 8 | fn from(ts_type: String) -> Self { |
| 9 | Self { |
| 10 | ts_type, |
| 11 | is_optional: false, |
| 12 | } |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | fn convert_generic(gen_ty: &syn::GenericArgument) -> TsType { |
nothing calls this directly
no outgoing calls
no test coverage detected