1 | // Type definitions for is-buffer 2.0
|
2 | // Project: https://github.com/feross/is-buffer#readme
|
3 | // Definitions by: Junyoung Choi <https://github.com/rokt33r>
|
4 | // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
5 | // TypeScript Version: 3.0
|
6 |
|
7 | /// <reference types='node' />
|
8 |
|
9 | declare function isBuffer(obj: any): obj is Buffer;
|
10 |
|
11 | export = isBuffer;
|