Skip to content

Commit

Permalink
formatting pass
Browse files Browse the repository at this point in the history
  • Loading branch information
hsubox76 committed Oct 14, 2022
1 parent 4b94d34 commit c51775d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions repo-scripts/prune-dts/prune-dts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function maybeHideConstructor(
return ts.createConstructor(
node.decorators,
[modifier],
/*parameters=*/[],
/*parameters=*/ [],
/* body= */ undefined
);
} else {
Expand Down Expand Up @@ -519,10 +519,10 @@ function dropPrivateApiTransformer(
);
return publicName
? factory.updateTypeReferenceNode(
node,
factory.createIdentifier(publicName.name),
node.typeArguments
)
node,
factory.createIdentifier(publicName.name),
node.typeArguments
)
: node;
}

Expand Down

0 comments on commit c51775d

Please sign in to comment.