Skip to content

Commit ba370d0

Browse files
committedJun 20, 2022
type: actually export class as default
1 parent d65917f commit ba370d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type ContiguousData = Buffer | ArrayBufferLike | ArrayBufferView | string
2727

2828
type BufferOrString = Buffer | string
2929

30-
declare class Minipass<
30+
export default class Minipass<
3131
RType extends any = Buffer,
3232
WType extends any = RType extends BufferOrString ? ContiguousData : RType
3333
>
@@ -94,7 +94,7 @@ declare class Minipass<
9494
concat(): RType extends BufferOrString ? Promise<RType> : never
9595
destroy(er?: any): void
9696
pipe<W extends Writable>(dest: W, opts?: Minipass.PipeOptions): W
97-
unpipe<W extends Writable>(dest: W)
97+
unpipe<W extends Writable>(dest: W): void
9898

9999
/**
100100
* alias for on()

0 commit comments

Comments
 (0)
Please sign in to comment.