UNPKG

8.78 kBTypeScriptView Raw
1// Basic
2export * from './source/primitive';
3export * from './source/typed-array';
4export * from './source/basic';
5export * from './source/observable-like';
6
7// Utilities
8export type {KeysOfUnion} from './source/keys-of-union';
9export type {DistributedOmit} from './source/distributed-omit';
10export type {DistributedPick} from './source/distributed-pick';
11export type {EmptyObject, IsEmptyObject} from './source/empty-object';
12export type {IfEmptyObject} from './source/if-empty-object';
13export type {NonEmptyObject} from './source/non-empty-object';
14export type {UnknownRecord} from './source/unknown-record';
15export type {UnknownArray} from './source/unknown-array';
16export type {Except} from './source/except';
17export type {TaggedUnion} from './source/tagged-union';
18export type {Writable} from './source/writable';
19export type {WritableDeep} from './source/writable-deep';
20export type {Merge} from './source/merge';
21export type {MergeDeep, MergeDeepOptions} from './source/merge-deep';
22export type {MergeExclusive} from './source/merge-exclusive';
23export type {RequireAtLeastOne} from './source/require-at-least-one';
24export type {RequireExactlyOne} from './source/require-exactly-one';
25export type {RequireAllOrNone} from './source/require-all-or-none';
26export type {RequireOneOrNone} from './source/require-one-or-none';
27export type {SingleKeyObject} from './source/single-key-object';
28export type {OmitIndexSignature} from './source/omit-index-signature';
29export type {PickIndexSignature} from './source/pick-index-signature';
30export type {PartialDeep, PartialDeepOptions} from './source/partial-deep';
31export type {RequiredDeep} from './source/required-deep';
32export type {PickDeep} from './source/pick-deep';
33export type {OmitDeep} from './source/omit-deep';
34export type {PartialOnUndefinedDeep, PartialOnUndefinedDeepOptions} from './source/partial-on-undefined-deep';
35export type {UndefinedOnPartialDeep} from './source/undefined-on-partial-deep';
36export type {ReadonlyDeep} from './source/readonly-deep';
37export type {LiteralUnion} from './source/literal-union';
38export type {Promisable} from './source/promisable';
39export type {Arrayable} from './source/arrayable';
40export type {Opaque, UnwrapOpaque, Tagged, GetTagMetadata, UnwrapTagged} from './source/tagged';
41export type {InvariantOf} from './source/invariant-of';
42export type {SetOptional} from './source/set-optional';
43export type {SetReadonly} from './source/set-readonly';
44export type {SetRequired} from './source/set-required';
45export type {SetNonNullable} from './source/set-non-nullable';
46export type {ValueOf} from './source/value-of';
47export type {AsyncReturnType} from './source/async-return-type';
48export type {ConditionalExcept} from './source/conditional-except';
49export type {ConditionalKeys} from './source/conditional-keys';
50export type {ConditionalPick} from './source/conditional-pick';
51export type {ConditionalPickDeep, ConditionalPickDeepOptions} from './source/conditional-pick-deep';
52export type {UnionToIntersection} from './source/union-to-intersection';
53export type {Stringified} from './source/stringified';
54export type {StringSlice} from './source/string-slice';
55export type {FixedLengthArray} from './source/fixed-length-array';
56export type {MultidimensionalArray} from './source/multidimensional-array';
57export type {MultidimensionalReadonlyArray} from './source/multidimensional-readonly-array';
58export type {IterableElement} from './source/iterable-element';
59export type {Entry} from './source/entry';
60export type {Entries} from './source/entries';
61export type {SetReturnType} from './source/set-return-type';
62export type {SetParameterType} from './source/set-parameter-type';
63export type {Asyncify} from './source/asyncify';
64export type {Simplify} from './source/simplify';
65export type {SimplifyDeep} from './source/simplify-deep';
66export type {Jsonify} from './source/jsonify';
67export type {Jsonifiable} from './source/jsonifiable';
68export type {StructuredCloneable} from './source/structured-cloneable';
69export type {Schema} from './source/schema';
70export type {LiteralToPrimitive} from './source/literal-to-primitive';
71export type {LiteralToPrimitiveDeep} from './source/literal-to-primitive-deep';
72export type {
73 PositiveInfinity,
74 NegativeInfinity,
75 Finite,
76 Integer,
77 Float,
78 NegativeFloat,
79 Negative,
80 NonNegative,
81 NegativeInteger,
82 NonNegativeInteger,
83 IsNegative,
84} from './source/numeric';
85export type {GreaterThan} from './source/greater-than';
86export type {GreaterThanOrEqual} from './source/greater-than-or-equal';
87export type {LessThan} from './source/less-than';
88export type {LessThanOrEqual} from './source/less-than-or-equal';
89export type {Sum} from './source/sum';
90export type {Subtract} from './source/subtract';
91export type {StringKeyOf} from './source/string-key-of';
92export type {Exact} from './source/exact';
93export type {ReadonlyTuple} from './source/readonly-tuple';
94export type {OptionalKeysOf} from './source/optional-keys-of';
95export type {OverrideProperties} from './source/override-properties';
96export type {HasOptionalKeys} from './source/has-optional-keys';
97export type {RequiredKeysOf} from './source/required-keys-of';
98export type {HasRequiredKeys} from './source/has-required-keys';
99export type {ReadonlyKeysOf} from './source/readonly-keys-of';
100export type {HasReadonlyKeys} from './source/has-readonly-keys';
101export type {WritableKeysOf} from './source/writable-keys-of';
102export type {HasWritableKeys} from './source/has-writable-keys';
103export type {Spread} from './source/spread';
104export type {IsInteger} from './source/is-integer';
105export type {IsFloat} from './source/is-float';
106export type {TupleToUnion} from './source/tuple-to-union';
107export type {UnionToTuple} from './source/union-to-tuple';
108export type {IntRange} from './source/int-range';
109export type {IsEqual} from './source/is-equal';
110export type {
111 IsLiteral,
112 IsStringLiteral,
113 IsNumericLiteral,
114 IsBooleanLiteral,
115 IsSymbolLiteral,
116} from './source/is-literal';
117export type {IsAny} from './source/is-any';
118export type {IfAny} from './source/if-any';
119export type {IsNever} from './source/is-never';
120export type {IfNever} from './source/if-never';
121export type {IsUnknown} from './source/is-unknown';
122export type {IfUnknown} from './source/if-unknown';
123export type {ArrayIndices} from './source/array-indices';
124export type {ArrayValues} from './source/array-values';
125export type {ArraySlice} from './source/array-slice';
126export type {ArraySplice} from './source/array-splice';
127export type {ArrayTail} from './source/array-tail';
128export type {SetFieldType} from './source/set-field-type';
129export type {Paths} from './source/paths';
130export type {SharedUnionFieldsDeep} from './source/shared-union-fields-deep';
131export type {IsNull} from './source/is-null';
132export type {IfNull} from './source/if-null';
133export type {And} from './source/and';
134export type {Or} from './source/or';
135export type {NonEmptyTuple} from './source/non-empty-tuple';
136export type {FindGlobalInstanceType, FindGlobalType} from './source/find-global-type';
137
138// Template literal types
139export type {CamelCase} from './source/camel-case';
140export type {CamelCasedProperties} from './source/camel-cased-properties';
141export type {CamelCasedPropertiesDeep} from './source/camel-cased-properties-deep';
142export type {KebabCase} from './source/kebab-case';
143export type {KebabCasedProperties} from './source/kebab-cased-properties';
144export type {KebabCasedPropertiesDeep} from './source/kebab-cased-properties-deep';
145export type {PascalCase} from './source/pascal-case';
146export type {PascalCasedProperties} from './source/pascal-cased-properties';
147export type {PascalCasedPropertiesDeep} from './source/pascal-cased-properties-deep';
148export type {SnakeCase} from './source/snake-case';
149export type {SnakeCasedProperties} from './source/snake-cased-properties';
150export type {SnakeCasedPropertiesDeep} from './source/snake-cased-properties-deep';
151export type {ScreamingSnakeCase} from './source/screaming-snake-case';
152export type {DelimiterCase} from './source/delimiter-case';
153export type {DelimiterCasedProperties} from './source/delimiter-cased-properties';
154export type {DelimiterCasedPropertiesDeep} from './source/delimiter-cased-properties-deep';
155export type {Join} from './source/join';
156export type {Split} from './source/split';
157export type {Trim} from './source/trim';
158export type {Replace} from './source/replace';
159export type {StringRepeat} from './source/string-repeat';
160export type {Includes} from './source/includes';
161export type {Get} from './source/get';
162export type {LastArrayElement} from './source/last-array-element';
163
164// Miscellaneous
165export type {GlobalThis} from './source/global-this';
166export type {PackageJson} from './source/package-json';
167export type {TsConfigJson} from './source/tsconfig-json';