Skip to content

Commit e2b6898

Browse files
committed
remove lint
1 parent c94d534 commit e2b6898

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/compiler/checker.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3373,7 +3373,7 @@ namespace ts {
33733373
function getDefaultConstructSignatures(classType: InterfaceType): Signature[] {
33743374
const baseConstructorType = getBaseConstructorTypeOfClass(classType);
33753375
const baseSignatures = getSignaturesOfType(baseConstructorType, SignatureKind.Construct);
3376-
if(baseSignatures.length === 0) {
3376+
if (baseSignatures.length === 0) {
33773377
return [createSignature(undefined, classType.localTypeParameters, emptyArray, classType, undefined, 0, /*hasRestParameter*/ false, /*hasStringLiterals*/ false)];
33783378
}
33793379
const baseTypeNode = getBaseTypeNodeOfClass(classType);
@@ -3593,7 +3593,6 @@ namespace ts {
35933593
return <ResolvedType>type;
35943594
}
35953595

3596-
35973596
/** Return properties of an object type or an empty array for other types */
35983597
function getPropertiesOfObjectType(type: Type): Symbol[] {
35993598
if (type.flags & TypeFlags.ObjectType) {

0 commit comments

Comments
 (0)