mirror of
https://github.com/LukeHagar/relay.git
synced 2025-12-07 12:47:45 +00:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
/**
|
|
* Returns true if obj is a Buffer, an ArrayBuffer, a Blob or a File.
|
|
*
|
|
* @private
|
|
*/
|
|
export declare function isBinary(obj: any): boolean;
|
|
export declare function hasBinary(obj: any, toJSON?: boolean): any;
|