Deprecated - Utilities Entry Point
The /utilities entry point is deprecated and will be removed in the next major version. Please use the default export from @halvaradop/ts-utility-types or import specific types from the appropriate entry point.
Deprecated - Utilities Entry Point
DEPRECATED
The /utilities
entry point is deprecated and will be removed in the next major version.
This entry point does not export any types or utilities. Please migrate to specific module entry points for better organization and tree-shaking.
Quick Migration
Replace the deprecated import with specific module imports:
// ❌ Deprecated - Don't use this
// import type { SomeUtility } from "@halvaradop/ts-utility-types/utilities"
// ✅ Use specific module imports instead
import type { DeepMerge } from "@halvaradop/ts-utility-types/deep"
import type { Prettify } from "@halvaradop/ts-utility-types/utils"
import type { PickByType } from "@halvaradop/ts-utility-types/objects"
Available Modules:
- Deep Operations -
@halvaradop/ts-utility-types/deep
- Array Utilities -
@halvaradop/ts-utility-types/arrays
- Object Utilities -
@halvaradop/ts-utility-types/objects
- String Utilities -
@halvaradop/ts-utility-types/strings
- Number Utilities -
@halvaradop/ts-utility-types/numbers
- Type Guards -
@halvaradop/ts-utility-types/type-guards
- Validation -
@halvaradop/ts-utility-types/validate
- Testing -
@halvaradop/ts-utility-types/test
- General Utils -
@halvaradop/ts-utility-types/utils
Deprecated - Types Entry Point
The /types entry point is deprecated and will be removed in the next major version. Please use the default export from @halvaradop/ts-utility-types or import specific types from the appropriate entry point.
Community & Support
Join our community, get support, and contribute to the TypeScript Utility Types project. Learn how to report issues, request features, and help improve the library.