2
2
import { EventEmitter } from 'events'
3
3
import { Stream } from 'stream'
4
4
5
- type Encoding = BufferEncoding | 'buffer' | null
5
+ export type Encoding = BufferEncoding | 'buffer' | null
6
6
7
7
interface Writable extends EventEmitter {
8
8
end ( ) : any
@@ -18,7 +18,7 @@ interface Readable extends EventEmitter {
18
18
interface Pipe < R , W > {
19
19
src : Minipass < R , W >
20
20
dest : Writable
21
- opts : Minipass . PipeOptions
21
+ opts : PipeOptions
22
22
}
23
23
24
24
type DualIterable < T > = Iterable < T > & AsyncIterable < T >
@@ -76,8 +76,8 @@ export default class Minipass<
76
76
// Options required if not reading buffers
77
77
constructor (
78
78
...args : RType extends Buffer
79
- ? [ options ?: Minipass . Options < RType > ]
80
- : [ options : Minipass . Options < RType > ]
79
+ ? [ options ?: Options < RType > ]
80
+ : [ options : Options < RType > ]
81
81
)
82
82
83
83
write ( chunk : WType , cb ?: ( ) => void ) : boolean
@@ -93,7 +93,7 @@ export default class Minipass<
93
93
94
94
concat ( ) : RType extends BufferOrString ? Promise < RType > : never
95
95
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
97
97
unpipe < W extends Writable > ( dest : W ) : void
98
98
99
99
/**
@@ -137,15 +137,13 @@ interface ObjectModeOptions {
137
137
async ?: boolean
138
138
}
139
139
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
151
143
}
144
+
145
+ export declare type Options < T > = T extends string
146
+ ? StringOptions
147
+ : T extends Buffer
148
+ ? BufferOptions
149
+ : ObjectModeOptions
0 commit comments