DefinitelyTyped/types/buffer-equal/index.d.ts

11 lines
365 B
TypeScript
Raw Permalink Normal View History

2014-11-03 09:45:14 +00:00
// Type definitions for buffer-equal 0.0.1
2014-06-19 15:43:47 +00:00
// Project: https://github.com/substack/node-buffer-equal
2014-03-31 23:08:59 +00:00
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
2014-03-31 23:08:59 +00:00
/// <reference types="node" />
2014-03-31 23:08:59 +00:00
declare function bufferEqual(actual: Buffer, expected: Buffer): boolean;
export = bufferEqual;