Deprecated

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.

Deprecated - Types Entry Point

DEPRECATED

The /types entry point is deprecated and will be removed in the next major version.

This entry point does not export any types or utilities. Instead, please use the specific module entry points for better tree-shaking and organization.

Quick Migration

Replace the deprecated import with specific module imports:

// ❌ Deprecated - Don't use this
// import type { SomeType } from "@halvaradop/ts-utility-types/types"

// ✅ Use specific module imports instead
import type { DeepMerge } from "@halvaradop/ts-utility-types/deep"
import type { ArrayToUnion } from "@halvaradop/ts-utility-types/arrays"
import type { PickByType } from "@halvaradop/ts-utility-types/objects"

Available Modules:

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