hins
Version:
[](https://codecov.io/gh/l-zoy/hins) [](https://github.com/l-zoy/hins/blob/master/LICENSE)  • 631 B
TypeScript
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