Skip to content

Commit 72bccd2

Browse files
🤖 dprint fmt
1 parent c02390e commit 72bccd2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

types/node-bzip2/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export interface CompressOptions {
33
/** Compression level from 1 (fastest) to 9 (best). Default is 9. */
44
level?: number;
55
/** Buffering behavior, e.g., 'auto'. */
6-
buffering?: 'auto' | string;
6+
buffering?: "auto" | string;
77
}
88

99
export interface DecompressOptions {

types/node-bzip2/node-bzip2-tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as bzip2 from 'node-bzip2';
1+
import * as bzip2 from "node-bzip2";
22

33
interface Result {
44
data: Buffer | null;

0 commit comments

Comments
 (0)