Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
swk777 committed Oct 8, 2024
1 parent 002e46f commit 61dc599
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/api/tsserver/tsserver.mts
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ export class TsServer extends EventEmitter {
}

private sendWithoutResponse(request: tsserver.protocol.Request) {
this.resolvers[request.seq] = () => {}
this.send(request)
this.resolvers[request.seq] = () => {};
this.send(request);
}

private sendWithResponsePromise<T>(request: tsserver.protocol.Request) {
return new Promise<T>((resolve) => {
this.resolvers[request.seq] = resolve;
Expand Down

0 comments on commit 61dc599

Please sign in to comment.