From a6d5f9d5e682f3f50dc367a0335526a33439a813 Mon Sep 17 00:00:00 2001 From: Rebecca Stevens Date: Fri, 10 May 2024 19:08:01 +1200 Subject: [PATCH] feat!: remove deprecated type DeepMergeLeafHKT --- src/index.ts | 1 - src/types/merging.ts | 8 -------- 2 files changed, 9 deletions(-) diff --git a/src/index.ts b/src/index.ts index cc8a37fc..a0327db6 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,7 +14,6 @@ export type { DeepMergeBuiltInMetaData, DeepMergeHKT, DeepMergeLeaf, - DeepMergeLeafHKT, DeepMergeLeafURI, DeepMergeMapsDefaultHKT, DeepMergeMergeFunctionsDefaultURIs, diff --git a/src/types/merging.ts b/src/types/merging.ts index 735fee8f..db7838b3 100644 --- a/src/types/merging.ts +++ b/src/types/merging.ts @@ -154,14 +154,6 @@ type DeepMergeOthersHKT< */ export type DeepMergeLeafURI = "DeepMergeLeafURI"; -/** - * Get the leaf type from many types that can't be merged. - * - * @deprecated Use `DeepMergeLeaf` instead. - */ -export type DeepMergeLeafHKT> = - DeepMergeLeaf; - /** * Get the leaf type from many types that can't be merged. */