From b2e2111702706f2a53d8a9bbff7f2bcde1a87aa5 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Wed, 1 May 2024 09:13:24 +0100 Subject: [PATCH] Add Add and Or to index.d.ts --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index af61223c5..dd5ab2803 100644 --- a/index.d.ts +++ b/index.d.ts @@ -123,6 +123,8 @@ 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 {And} from './source/and'; +export type {Or} from './source/or'; // Template literal types export type {CamelCase} from './source/camel-case';