Fixed missing ctype expression handler in dts generator
parent
53210ec4e6
commit
4c49330bef
|
@ -263,6 +263,9 @@ function analyze_type_node(node: ts.TypeNode | ts.LeftHandSideExpression, data:
|
||||||
case SyntaxKind.TupleType:
|
case SyntaxKind.TupleType:
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case SyntaxKind.ConditionalType:
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw "Unknown type " + SyntaxKind[node.kind] + ". Extend me :)";
|
throw "Unknown type " + SyntaxKind[node.kind] + ". Extend me :)";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue