(type: Type)
| 70 | } |
| 71 | |
| 72 | export function isStringMapping(type: Type) { |
| 73 | return hasFlag(type, TypeFlags.StringMapping); |
| 74 | } |
| 75 | |
| 76 | export function isNumber(type: Type) { |
| 77 | return hasFlag(type, TypeFlags.Number); |
no test coverage detected
searching dependent graphs…