UNPKG

ember-codemod-add-component-signatures

Version:
15 lines (14 loc) 435 B
const defaultTsType = 'unknown'; const mapping = new Map([ ['BooleanLiteral', 'boolean'], ['NullLiteral', 'null'], ['NumberLiteral', 'number'], ['PathExpression', 'unknown'], ['StringLiteral', 'string'], ['SubExpression', 'unknown'], ['UndefinedLiteral', 'undefined'], ]); export function getBlockParameterType(recastType) { const tsType = mapping.get(recastType); return tsType ?? defaultTsType; }