mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
437 B
TypeScript
12 lines
437 B
TypeScript
// Type definitions for blob-to-buffer 1.2
|
|
// Project: https://github.com/feross/blob-to-buffer
|
|
// Definitions by: nrlquaker <https://github.com/nrlquaker>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
/// <reference types="node" />
|
|
|
|
declare function blobToBuffer(blob: Blob, callback: (error: any, buffer: Buffer) => void): void;
|
|
declare namespace blobToBuffer {}
|
|
export = blobToBuffer;
|