UNPKG

vtils

Version:

一个面向业务的 JavaScript/TypeScript 实用程序库。

26 lines (24 loc) 691 B
/** * 类型工具库。 * * @packageDocumentation */ /* istanbul ignore file */ // @index(['./**/*.ts', '!./**/*.test.*', '!**/__*'], f => `export * from '${f.path}'`) export * from "./AnyAsyncFunction.js"; export * from "./AnyFunction.js"; export * from "./AnyObject.js"; export * from "./Defined.js"; export * from "./DotPath.js"; export * from "./FirstParameter.js"; export * from "./IsAny.js"; export * from "./IsEmptyArray.js"; export * from "./IsEmptyObject.js"; export * from "./IsNever.js"; export * from "./NonEmptyArray.js"; export * from "./Nullable.js"; export * from "./OneOrMore.js"; export * from "./PartialDeepBy.js"; export * from "./Path.js"; // @endindex export {};