Skip to content

Commit

Permalink
biome: fix d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tinchoz49 committed May 25, 2024
1 parent fdf369a commit 4265eee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions types/http-socket.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ export class HTTPSocket {
end(data: any, _: any, cb?: () => void): void;
write(data: any, _: any, cb?: () => void): boolean;
_clearTimeout(): void;
_onWrite(data: any, cb: any): void;
}
4 changes: 2 additions & 2 deletions types/server.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export class Server {
* @param {() => void} [cb]
*/
close(cb?: () => void): void;
ref(): void;
unref(): void;
ref: () => void;
unref: () => void;
[kListen]({ port, host }: {
port: any;
host: any;
Expand Down

0 comments on commit 4265eee

Please sign in to comment.