File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ const DEFAULT_MAX_NAME_LENGTH = 127;
2626abstract class SenderBufferBase implements SenderBuffer {
2727 private bufferSize : number ;
2828 private readonly maxBufferSize : number ;
29- protected buffer : Buffer < ArrayBuffer > ;
29+ protected buffer : Buffer ;
3030 protected position : number ;
3131 private endOfLastRow : number ;
3232
Original file line number Diff line number Diff line change 11import { readFileSync } from "node:fs" ;
22import { PathOrFileDescriptor } from "fs" ;
33import { Agent } from "undici" ;
4- import http from "http" ;
5- import https from "https" ;
4+ import * as http from "http" ;
5+ import * as https from "https" ;
66
77import { Logger } from "./logging" ;
88import { fetchJson , isBoolean , isInteger } from "./utils" ;
Original file line number Diff line number Diff line change 11// @ts -check
2- import http from "http" ;
3- import https from "https" ;
2+ import * as http from "http" ;
3+ import * as https from "https" ;
44import { Buffer } from "node:buffer" ;
55
66import { SenderOptions , HTTP , HTTPS } from "../../options" ;
You can’t perform that action at this time.
0 commit comments