type-fest 4.18.0 → 4.18.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.
Files changed (2) hide show
  1. package/index.d.ts +4 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -123,6 +123,10 @@ export type {ArraySplice} from './source/array-splice';
123
123
  export type {SetFieldType} from './source/set-field-type';
124
124
  export type {Paths} from './source/paths';
125
125
  export type {SharedUnionFieldsDeep} from './source/shared-union-fields-deep';
126
+ export type {IsNull} from './source/is-null';
127
+ export type {IfNull} from './source/if-null';
128
+ export type {And} from './source/and';
129
+ export type {Or} from './source/or';
126
130
 
127
131
  // Template literal types
128
132
  export type {CamelCase} from './source/camel-case';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "type-fest",
3
- "version": "4.18.0",
3
+ "version": "4.18.1",
4
4
  "description": "A collection of essential TypeScript types",
5
5
  "license": "(MIT OR CC0-1.0)",
6
6
  "repository": "sindresorhus/type-fest",