diff --git a/gridfs-stream/gridfs-stream.d.ts b/gridfs-stream/gridfs-stream.d.ts index 515f56a4c..65b134a1d 100644 --- a/gridfs-stream/gridfs-stream.d.ts +++ b/gridfs-stream/gridfs-stream.d.ts @@ -33,9 +33,16 @@ declare module GridFSStream { } export interface WriteStream extends NodeJS.WritableStream { + writable: boolean; + name: string; + id: string; + options: Options; + mode: string; } export interface ReadStream extends NodeJS.ReadableStream { + readable: boolean; + paused: boolean; } }