/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/eslint-module-utils/hash.d.ts
14 строк
343 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
import type { Hash } from 'crypto'; declare function hashArray(value: Array<unknown>, hash?: Hash): Hash; declare function hashObject<T extends object>(value: T, hash?: Hash): Hash; declare function hashify( value: Array<unknown> | object | unknown, hash?: Hash, ): Hash; export default hashify; export { hashArray, hashObject };