DefinitelyTyped/types/blob-stream/index.d.ts
2017-03-24 14:27:52 -07:00

18 lines
514 B
TypeScript

// Type definitions for blob-stream v0.1.3
// Project: https://github.com/devongovett/blob-stream
// Definitions by: Eric Hillah <https://github.com/erichillah>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
declare function BlobStream(): BlobStream.IBlobStream;
declare namespace BlobStream {
interface IBlobStream extends NodeJS.WritableStream{
toBlob(type?: string): Blob;
toBlobURL(type?: string): string;
}
}
export = BlobStream;