From ed860e9a3c5d29fbe500371af53c952ee6e40868 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Wed, 1 May 2024 18:09:54 +0900 Subject: [PATCH] Fix missing exports (#876) Co-authored-by: Sindre Sorhus --- index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.d.ts b/index.d.ts index af61223c5..9ea9ed954 100644 --- a/index.d.ts +++ b/index.d.ts @@ -123,6 +123,10 @@ export type {ArraySplice} from './source/array-splice'; export type {SetFieldType} from './source/set-field-type'; export type {Paths} from './source/paths'; export type {SharedUnionFieldsDeep} from './source/shared-union-fields-deep'; +export type {IsNull} from './source/is-null'; +export type {IfNull} from './source/if-null'; +export type {And} from './source/and'; +export type {Or} from './source/or'; // Template literal types export type {CamelCase} from './source/camel-case';