mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
// Type definitions for is-buffer 2.0
|
|
// Project: https://github.com/feross/is-buffer#readme
|
|
// Definitions by: Junyoung Choi <https://github.com/rokt33r>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
/// <reference types='node' />
|
|
|
|
declare function isBuffer(obj: any): obj is Buffer;
|
|
|
|
export = isBuffer;
|