File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3624,11 +3624,13 @@ namespace ts {
36243624 return signatures;
36253625 }
36263626
3627- // The base constructor of a class can resolve to
3628- // undefinedType if the class has no extends clause,
3629- // unknownType if an error occurred during resolution of the extends expression,
3630- // nullType if the extends expression is the null value, or
3631- // an object type with at least one construct signature.
3627+ /**
3628+ * The base constructor of a class can resolve to
3629+ * * undefinedType if the class has no extends clause,
3630+ * * unknownType if an error occurred during resolution of the extends expression,
3631+ * * nullType if the extends expression is the null value, or
3632+ * * an object type with at least one construct signature.
3633+ */
36323634 function getBaseConstructorTypeOfClass(type: InterfaceType): Type {
36333635 if (!type.resolvedBaseConstructorType) {
36343636 const baseTypeNode = getBaseTypeNodeOfClass(type);
You can’t perform that action at this time.
0 commit comments