Skip to content

Commit

Permalink
PromiseReadable and PromiseWritable are templated classes
Browse files Browse the repository at this point in the history
  • Loading branch information
dex4er committed Oct 1, 2017
1 parent d9da2ed commit 66d2934
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/promise-duplex.d.ts
Expand Up @@ -2,10 +2,10 @@ import { PromiseReadable } from 'promise-readable'
import { PromiseWritable } from 'promise-writable'
import { Duplex } from 'stream'

export declare class PromiseDuplex<TDuplex extends Duplex> extends PromiseReadable implements PromiseWritable {
export declare class PromiseDuplex<TDuplex extends Duplex> extends PromiseReadable<TDuplex> implements PromiseWritable<TDuplex> {
readonly stream: TDuplex
readonly readable: PromiseReadable
readonly writable: PromiseWritable
readonly readable: PromiseReadable<TDuplex>
readonly writable: PromiseWritable<TDuplex>

constructor (stream: TDuplex)

Expand Down

0 comments on commit 66d2934

Please sign in to comment.