Skip to content

Commit c7ac98d

Browse files
committed
test publish.yaml
1 parent 31a6a0f commit c7ac98d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/buffer/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const DEFAULT_MAX_NAME_LENGTH = 127;
2626
abstract 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

src/options.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { readFileSync } from "node:fs";
22
import { PathOrFileDescriptor } from "fs";
33
import { 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

77
import { Logger } from "./logging";
88
import { fetchJson, isBoolean, isInteger } from "./utils";

src/transport/http/stdlib.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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";
44
import { Buffer } from "node:buffer";
55

66
import { SenderOptions, HTTP, HTTPS } from "../../options";

0 commit comments

Comments
 (0)