Skip to content

Commit 7768aec

Browse files
committedJun 20, 2022
make minipass options exposed so it's extensible
1 parent 3802694 commit 7768aec

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed
 

‎index.d.ts

+14-16
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { EventEmitter } from 'events'
33
import { Stream } from 'stream'
44

5-
type Encoding = BufferEncoding | 'buffer' | null
5+
export type Encoding = BufferEncoding | 'buffer' | null
66

77
interface Writable extends EventEmitter {
88
end(): any
@@ -18,7 +18,7 @@ interface Readable extends EventEmitter {
1818
interface Pipe<R, W> {
1919
src: Minipass<R, W>
2020
dest: Writable
21-
opts: Minipass.PipeOptions
21+
opts: PipeOptions
2222
}
2323

2424
type DualIterable<T> = Iterable<T> & AsyncIterable<T>
@@ -76,8 +76,8 @@ export default class Minipass<
7676
// Options required if not reading buffers
7777
constructor(
7878
...args: RType extends Buffer
79-
? [options?: Minipass.Options<RType>]
80-
: [options: Minipass.Options<RType>]
79+
? [options?: Options<RType>]
80+
: [options: Options<RType>]
8181
)
8282

8383
write(chunk: WType, cb?: () => void): boolean
@@ -93,7 +93,7 @@ export default class Minipass<
9393

9494
concat(): RType extends BufferOrString ? Promise<RType> : never
9595
destroy(er?: any): void
96-
pipe<W extends Writable>(dest: W, opts?: Minipass.PipeOptions): W
96+
pipe<W extends Writable>(dest: W, opts?: PipeOptions): W
9797
unpipe<W extends Writable>(dest: W): void
9898

9999
/**
@@ -137,15 +137,13 @@ interface ObjectModeOptions {
137137
async?: boolean
138138
}
139139

140-
declare namespace Minipass {
141-
interface PipeOptions {
142-
end?: boolean
143-
proxyErrors?: boolean
144-
}
145-
146-
type Options<T> = T extends string
147-
? StringOptions
148-
: T extends Buffer
149-
? BufferOptions
150-
: ObjectModeOptions
140+
export declare interface PipeOptions {
141+
end?: boolean
142+
proxyErrors?: boolean
151143
}
144+
145+
export declare type Options<T> = T extends string
146+
? StringOptions
147+
: T extends Buffer
148+
? BufferOptions
149+
: ObjectModeOptions

0 commit comments

Comments
 (0)
Please sign in to comment.