Skip to content

Commit

Permalink
🤖 dprint fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-bot committed Feb 29, 2024
1 parent 005690c commit df158f2
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 deletions.
5 changes: 4 additions & 1 deletion types/node/http.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ declare module "http" {
agent?: Agent | boolean | undefined;
auth?: string | null | undefined;
createConnection?:
| ((options: ClientRequestArgs, oncreate: (err: Error | null, socket: stream.Duplex) => void) => stream.Duplex | null | undefined)
| ((
options: ClientRequestArgs,
oncreate: (err: Error | null, socket: stream.Duplex) => void,
) => stream.Duplex | null | undefined)
| undefined;
defaultPort?: number | string | undefined;
family?: number | undefined;
Expand Down
5 changes: 4 additions & 1 deletion types/node/ts4.8/http.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ declare module "http" {
agent?: Agent | boolean | undefined;
auth?: string | null | undefined;
createConnection?:
| ((options: ClientRequestArgs, oncreate: (err: Error | null, socket: stream.Duplex) => void) => stream.Duplex | null | undefined)
| ((
options: ClientRequestArgs,
oncreate: (err: Error | null, socket: stream.Duplex) => void,
) => stream.Duplex | null | undefined)
| undefined;
defaultPort?: number | string | undefined;
family?: number | undefined;
Expand Down
5 changes: 4 additions & 1 deletion types/node/v16/http.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,10 @@ declare module "http" {
timeout?: number | undefined;
setHost?: boolean | undefined;
createConnection?:
| ((options: ClientRequestArgs, oncreate: (err: Error | null, socket: stream.Duplex) => void) => stream.Duplex | null | undefined)
| ((
options: ClientRequestArgs,
oncreate: (err: Error | null, socket: stream.Duplex) => void,
) => stream.Duplex | null | undefined)
| undefined;
lookup?: LookupFunction | undefined;
}
Expand Down
5 changes: 4 additions & 1 deletion types/node/v16/ts4.8/http.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,10 @@ declare module "http" {
timeout?: number | undefined;
setHost?: boolean | undefined;
createConnection?:
| ((options: ClientRequestArgs, oncreate: (err: Error | null, socket: stream.Duplex) => void) => stream.Duplex | null | undefined)
| ((
options: ClientRequestArgs,
oncreate: (err: Error | null, socket: stream.Duplex) => void,
) => stream.Duplex | null | undefined)
| undefined;
lookup?: LookupFunction | undefined;
}
Expand Down
5 changes: 4 additions & 1 deletion types/node/v18/http.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ declare module "http" {
agent?: Agent | boolean | undefined;
auth?: string | null | undefined;
createConnection?:
| ((options: ClientRequestArgs, oncreate: (err: Error | null, socket: stream.Duplex) => void) => stream.Duplex | null | undefined)
| ((
options: ClientRequestArgs,
oncreate: (err: Error | null, socket: stream.Duplex) => void,
) => stream.Duplex | null | undefined)
| undefined;
defaultPort?: number | string | undefined;
family?: number | undefined;
Expand Down
5 changes: 4 additions & 1 deletion types/node/v18/ts4.8/http.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ declare module "http" {
agent?: Agent | boolean | undefined;
auth?: string | null | undefined;
createConnection?:
| ((options: ClientRequestArgs, oncreate: (err: Error | null, socket: stream.Duplex) => void) => stream.Duplex | null | undefined)
| ((
options: ClientRequestArgs,
oncreate: (err: Error | null, socket: stream.Duplex) => void,
) => stream.Duplex | null | undefined)
| undefined;
defaultPort?: number | string | undefined;
family?: number | undefined;
Expand Down

0 comments on commit df158f2

Please sign in to comment.