@@ -17,7 +17,7 @@ export type {UnknownRecord} from './source/unknown-record.d.ts';
1717export type { UnknownArray } from './source/unknown-array.d.ts' ;
1818export type { UnknownSet } from './source/unknown-set.d.ts' ;
1919export type { UnknownMap } from './source/unknown-map.d.ts' ;
20- export type { Except } from './source/except.d.ts' ;
20+ export type { Except , ExceptOptions } from './source/except.d.ts' ;
2121export type { TaggedUnion } from './source/tagged-union.d.ts' ;
2222export type { Writable } from './source/writable.d.ts' ;
2323export type { WritableDeep } from './source/writable-deep.d.ts' ;
@@ -132,23 +132,23 @@ export type {IsNever} from './source/is-never.d.ts';
132132export type { IfNever } from './source/if-never.d.ts' ;
133133export type { IsUnknown } from './source/is-unknown.d.ts' ;
134134export type { IfUnknown } from './source/if-unknown.d.ts' ;
135- export type { IsTuple } from './source/is-tuple.d.ts' ;
135+ export type { IsTuple , IsTupleOptions } from './source/is-tuple.d.ts' ;
136136export type { ArrayIndices } from './source/array-indices.d.ts' ;
137137export type { ArrayValues } from './source/array-values.d.ts' ;
138138export type { ArraySlice } from './source/array-slice.d.ts' ;
139139export type { ArraySplice } from './source/array-splice.d.ts' ;
140140export type { ArrayTail } from './source/array-tail.d.ts' ;
141- export type { SetFieldType } from './source/set-field-type.d.ts' ;
142- export type { Paths } from './source/paths.d.ts' ;
141+ export type { SetFieldType , SetFieldTypeOptions } from './source/set-field-type.d.ts' ;
142+ export type { Paths , PathsOptions } from './source/paths.d.ts' ;
143143export type { AllUnionFields } from './source/all-union-fields.d.ts' ;
144144export type { SharedUnionFields } from './source/shared-union-fields.d.ts' ;
145- export type { SharedUnionFieldsDeep } from './source/shared-union-fields-deep.d.ts' ;
145+ export type { SharedUnionFieldsDeep , SharedUnionFieldsDeepOptions } from './source/shared-union-fields-deep.d.ts' ;
146146export type { IsNull } from './source/is-null.d.ts' ;
147147export type { IfNull } from './source/if-null.d.ts' ;
148148export type { IsUndefined } from './source/is-undefined.d.ts' ;
149149export type { And } from './source/and.d.ts' ;
150150export type { Or } from './source/or.d.ts' ;
151- export type { AllExtend } from './source/all-extend.d.ts' ;
151+ export type { AllExtend , AllExtendOptions } from './source/all-extend.d.ts' ;
152152export type { NonEmptyTuple } from './source/non-empty-tuple.d.ts' ;
153153export type { FindGlobalInstanceType , FindGlobalType } from './source/find-global-type.d.ts' ;
154154export type { If } from './source/if.d.ts' ;
@@ -159,7 +159,7 @@ export type {IsOptional} from './source/is-optional.d.ts';
159159export type { IsNullable } from './source/is-nullable.d.ts' ;
160160
161161// Template literal types
162- export type { CamelCase } from './source/camel-case.d.ts' ;
162+ export type { CamelCase , CamelCaseOptions } from './source/camel-case.d.ts' ;
163163export type { CamelCasedProperties } from './source/camel-cased-properties.d.ts' ;
164164export type { CamelCasedPropertiesDeep } from './source/camel-cased-properties-deep.d.ts' ;
165165export type { KebabCase } from './source/kebab-case.d.ts' ;
@@ -176,17 +176,17 @@ export type {DelimiterCase} from './source/delimiter-case.d.ts';
176176export type { DelimiterCasedProperties } from './source/delimiter-cased-properties.d.ts' ;
177177export type { DelimiterCasedPropertiesDeep } from './source/delimiter-cased-properties-deep.d.ts' ;
178178export type { Join } from './source/join.d.ts' ;
179- export type { Split } from './source/split.d.ts' ;
180- export type { Words } from './source/words.d.ts' ;
179+ export type { Split , SplitOptions } from './source/split.d.ts' ;
180+ export type { Words , WordsOptions } from './source/words.d.ts' ;
181181export type { Trim } from './source/trim.d.ts' ;
182- export type { Replace } from './source/replace.d.ts' ;
182+ export type { Replace , ReplaceOptions } from './source/replace.d.ts' ;
183183export type { StringRepeat } from './source/string-repeat.d.ts' ;
184184export type { Includes } from './source/includes.d.ts' ;
185- export type { Get } from './source/get.d.ts' ;
185+ export type { Get , GetOptions } from './source/get.d.ts' ;
186186export type { LastArrayElement } from './source/last-array-element.d.ts' ;
187187export type { ConditionalSimplify } from './source/conditional-simplify.d.ts' ;
188188export type { ConditionalSimplifyDeep } from './source/conditional-simplify-deep.d.ts' ;
189- export type { RemovePrefix } from './source/remove-prefix.d.ts' ;
189+ export type { RemovePrefix , RemovePrefixOptions } from './source/remove-prefix.d.ts' ;
190190
191191// Miscellaneous
192192export type { GlobalThis } from './source/global-this.d.ts' ;
0 commit comments