Skip to content

Commit 82082ff

Browse files
committed
Ignore TSMappedType during generation
1 parent e40fef9 commit 82082ff

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/parse/ParameterLoader.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,8 @@ export class ParameterLoader {
402402
return { type: 'wildcard' };
403403
case AST_NODE_TYPES.TSFunctionType:
404404
case AST_NODE_TYPES.TSImportType:
405-
// These types are explicitly not supported
405+
case AST_NODE_TYPES.TSMappedType:
406+
// TODO: These types are explicitly not supported at the moment
406407
return { type: 'wildcard' };
407408
case AST_NODE_TYPES.TSTupleType:
408409
return {

0 commit comments

Comments
 (0)