source: frontend/node_modules/eslint-module-utils/hash.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 343 bytes
Line 
1import type { Hash } from 'crypto';
2
3declare function hashArray(value: Array<unknown>, hash?: Hash): Hash;
4
5declare function hashObject<T extends object>(value: T, hash?: Hash): Hash;
6
7declare function hashify(
8 value: Array<unknown> | object | unknown,
9 hash?: Hash,
10): Hash;
11
12export default hashify;
13
14export { hashArray, hashObject };
Note: See TracBrowser for help on using the repository browser.