type-fest 5.0.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +12 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export type {UnknownRecord} from './source/unknown-record.d.ts';
|
|
|
17
17
|
export type {UnknownArray} from './source/unknown-array.d.ts';
|
|
18
18
|
export type {UnknownSet} from './source/unknown-set.d.ts';
|
|
19
19
|
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';
|
|
21
21
|
export type {TaggedUnion} from './source/tagged-union.d.ts';
|
|
22
22
|
export type {Writable} from './source/writable.d.ts';
|
|
23
23
|
export type {WritableDeep} from './source/writable-deep.d.ts';
|
|
@@ -132,23 +132,23 @@ export type {IsNever} from './source/is-never.d.ts';
|
|
|
132
132
|
export type {IfNever} from './source/if-never.d.ts';
|
|
133
133
|
export type {IsUnknown} from './source/is-unknown.d.ts';
|
|
134
134
|
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';
|
|
136
136
|
export type {ArrayIndices} from './source/array-indices.d.ts';
|
|
137
137
|
export type {ArrayValues} from './source/array-values.d.ts';
|
|
138
138
|
export type {ArraySlice} from './source/array-slice.d.ts';
|
|
139
139
|
export type {ArraySplice} from './source/array-splice.d.ts';
|
|
140
140
|
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';
|
|
143
143
|
export type {AllUnionFields} from './source/all-union-fields.d.ts';
|
|
144
144
|
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';
|
|
146
146
|
export type {IsNull} from './source/is-null.d.ts';
|
|
147
147
|
export type {IfNull} from './source/if-null.d.ts';
|
|
148
148
|
export type {IsUndefined} from './source/is-undefined.d.ts';
|
|
149
149
|
export type {And} from './source/and.d.ts';
|
|
150
150
|
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';
|
|
152
152
|
export type {NonEmptyTuple} from './source/non-empty-tuple.d.ts';
|
|
153
153
|
export type {FindGlobalInstanceType, FindGlobalType} from './source/find-global-type.d.ts';
|
|
154
154
|
export type {If} from './source/if.d.ts';
|
|
@@ -159,7 +159,7 @@ export type {IsOptional} from './source/is-optional.d.ts';
|
|
|
159
159
|
export type {IsNullable} from './source/is-nullable.d.ts';
|
|
160
160
|
|
|
161
161
|
// Template literal types
|
|
162
|
-
export type {CamelCase} from './source/camel-case.d.ts';
|
|
162
|
+
export type {CamelCase, CamelCaseOptions} from './source/camel-case.d.ts';
|
|
163
163
|
export type {CamelCasedProperties} from './source/camel-cased-properties.d.ts';
|
|
164
164
|
export type {CamelCasedPropertiesDeep} from './source/camel-cased-properties-deep.d.ts';
|
|
165
165
|
export type {KebabCase} from './source/kebab-case.d.ts';
|
|
@@ -176,17 +176,17 @@ export type {DelimiterCase} from './source/delimiter-case.d.ts';
|
|
|
176
176
|
export type {DelimiterCasedProperties} from './source/delimiter-cased-properties.d.ts';
|
|
177
177
|
export type {DelimiterCasedPropertiesDeep} from './source/delimiter-cased-properties-deep.d.ts';
|
|
178
178
|
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';
|
|
181
181
|
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';
|
|
183
183
|
export type {StringRepeat} from './source/string-repeat.d.ts';
|
|
184
184
|
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';
|
|
186
186
|
export type {LastArrayElement} from './source/last-array-element.d.ts';
|
|
187
187
|
export type {ConditionalSimplify} from './source/conditional-simplify.d.ts';
|
|
188
188
|
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';
|
|
190
190
|
|
|
191
191
|
// Miscellaneous
|
|
192
192
|
export type {GlobalThis} from './source/global-this.d.ts';
|