|
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 | |
|---|
| 1 | import type { Hash } from 'crypto';
|
|---|
| 2 |
|
|---|
| 3 | declare function hashArray(value: Array<unknown>, hash?: Hash): Hash;
|
|---|
| 4 |
|
|---|
| 5 | declare function hashObject<T extends object>(value: T, hash?: Hash): Hash;
|
|---|
| 6 |
|
|---|
| 7 | declare function hashify(
|
|---|
| 8 | value: Array<unknown> | object | unknown,
|
|---|
| 9 | hash?: Hash,
|
|---|
| 10 | ): Hash;
|
|---|
| 11 |
|
|---|
| 12 | export default hashify;
|
|---|
| 13 |
|
|---|
| 14 | export { hashArray, hashObject };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.