Files
DefinitelyTyped/types/rev-hash/index.d.ts
2017-07-12 00:01:46 +08:00

15 lines
406 B
TypeScript

// Type definitions for rev-hash 2.0
// Project: https://github.com/sindresorhus/rev-hash
// Definitions by: Ika <https://github.com/ikatyang>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
/**
* Create a hash for file revving
* @param input Data to create a hash from.
*/
declare function revHash(input: Buffer | string): string;
export = revHash;