UNPKG

hins

Version:

[![codecov](https://codecov.io/gh/l-zoy/hins/branch/main/graph/badge.svg)](https://codecov.io/gh/l-zoy/hins) [![GitHub license](https://img.shields.io/github/license/l-zoy/hins)](https://github.com/l-zoy/hins/blob/master/LICENSE) ![node-current](https://i

17 lines (15 loc) 631 B
import chokidar from "./chokidar"; import resolve from 'resolve'; import slash from "./slash"; import joi from "./joi"; import Core from './Core'; export * from './types'; export { isplainobject, clonedeep, chokidar, resolve, isEqual, merge, slash, Core, uniq, joi }; declare function clonedeep<T>(value: T): T declare function isplainobject(value?: any): boolean declare function uniq(array: any[] | null | undefined): any[] declare function isEqual(arg0: any, arg1: any): boolean declare function merge<T, U>( arg0: T, arg1: U ): T extends Record<string, any> ? (U extends Record<string, any> ? T & U : never) : never