From a7cc603b1ab54f7afa63b24c36c671b41b9bc04c Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Wed, 1 May 2024 17:05:56 +0900 Subject: [PATCH] Add `Add` and `Or` to `index.d.ts` --- index.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.d.ts b/index.d.ts index af61223c5..48d9013e3 100644 --- a/index.d.ts +++ b/index.d.ts @@ -123,6 +123,9 @@ 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';