DefinitelyTyped/buffer-equal/buffer-equal.d.ts
2014-11-05 14:39:42 +09:00

12 lines
398 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/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module 'buffer-equal' {
function bufferEqual(actual:Buffer, expected:Buffer): boolean;
export = bufferEqual;
}