UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

12 lines (9 loc) 402 B
// 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 module 'buffer-equal' { function bufferEqual(actual:Buffer, expected:Buffer): boolean; export = bufferEqual; }