Skip to content

Commit 4f9c248

Browse files
committed
Add missing exports
Fixes #1235 Closes #1236
1 parent fc14f87 commit 4f9c248

1 file changed

Lines changed: 12 additions & 12 deletions

File tree

index.d.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export type {UnknownRecord} from './source/unknown-record.d.ts';
1717
export type {UnknownArray} from './source/unknown-array.d.ts';
1818
export type {UnknownSet} from './source/unknown-set.d.ts';
1919
export 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';
2121
export type {TaggedUnion} from './source/tagged-union.d.ts';
2222
export type {Writable} from './source/writable.d.ts';
2323
export type {WritableDeep} from './source/writable-deep.d.ts';
@@ -132,23 +132,23 @@ export type {IsNever} from './source/is-never.d.ts';
132132
export type {IfNever} from './source/if-never.d.ts';
133133
export type {IsUnknown} from './source/is-unknown.d.ts';
134134
export 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';
136136
export type {ArrayIndices} from './source/array-indices.d.ts';
137137
export type {ArrayValues} from './source/array-values.d.ts';
138138
export type {ArraySlice} from './source/array-slice.d.ts';
139139
export type {ArraySplice} from './source/array-splice.d.ts';
140140
export 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';
143143
export type {AllUnionFields} from './source/all-union-fields.d.ts';
144144
export 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';
146146
export type {IsNull} from './source/is-null.d.ts';
147147
export type {IfNull} from './source/if-null.d.ts';
148148
export type {IsUndefined} from './source/is-undefined.d.ts';
149149
export type {And} from './source/and.d.ts';
150150
export 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';
152152
export type {NonEmptyTuple} from './source/non-empty-tuple.d.ts';
153153
export type {FindGlobalInstanceType, FindGlobalType} from './source/find-global-type.d.ts';
154154
export type {If} from './source/if.d.ts';
@@ -159,7 +159,7 @@ export type {IsOptional} from './source/is-optional.d.ts';
159159
export 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';
163163
export type {CamelCasedProperties} from './source/camel-cased-properties.d.ts';
164164
export type {CamelCasedPropertiesDeep} from './source/camel-cased-properties-deep.d.ts';
165165
export type {KebabCase} from './source/kebab-case.d.ts';
@@ -176,17 +176,17 @@ export type {DelimiterCase} from './source/delimiter-case.d.ts';
176176
export type {DelimiterCasedProperties} from './source/delimiter-cased-properties.d.ts';
177177
export type {DelimiterCasedPropertiesDeep} from './source/delimiter-cased-properties-deep.d.ts';
178178
export 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';
181181
export 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';
183183
export type {StringRepeat} from './source/string-repeat.d.ts';
184184
export 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';
186186
export type {LastArrayElement} from './source/last-array-element.d.ts';
187187
export type {ConditionalSimplify} from './source/conditional-simplify.d.ts';
188188
export 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
192192
export type {GlobalThis} from './source/global-this.d.ts';

0 commit comments

Comments
 (0)