DefinitelyTyped/buffer-equal/buffer-equal.d.ts
2016-04-22 14:12:45 -07:00

11 lines
377 B
TypeScript

// Type definitions for buffer-equal 0.0.1
// Project: https://github.com/substack/node-buffer-equal
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare function bufferEqual(actual: Buffer, expected: Buffer): boolean;
export = bufferEqual;