Deprecated

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:

Need help with migration? Check our Community & Support page.