mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
365 B
TypeScript
11 lines
365 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 types="node" />
|
|
|
|
|
|
declare function bufferEqual(actual: Buffer, expected: Buffer): boolean;
|
|
export = bufferEqual;
|