@augment-vir/common 10.0.0 → 11.0.0

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.
@@ -1,5 +1,5 @@
1
1
  import { Jsonifiable } from 'type-fest';
2
- export type PartialWithNullable<T extends object> = {
2
+ export type PartialAndNullable<T extends object> = {
3
3
  [Prop in keyof T]?: T[Prop] | null | undefined;
4
4
  };
5
5
  export declare function isObject(input: any): input is NonNullable<object>;
@@ -1,5 +1,5 @@
1
1
  import { Jsonifiable } from 'type-fest';
2
- export type PartialWithNullable<T extends object> = {
2
+ export type PartialAndNullable<T extends object> = {
3
3
  [Prop in keyof T]?: T[Prop] | null | undefined;
4
4
  };
5
5
  export declare function isObject(input: any): input is NonNullable<object>;
@@ -1,5 +1,5 @@
1
1
  import { Jsonifiable } from 'type-fest';
2
- export type PartialWithNullable<T extends object> = {
2
+ export type PartialAndNullable<T extends object> = {
3
3
  [Prop in keyof T]?: T[Prop] | null | undefined;
4
4
  };
5
5
  export declare function isObject(input: any): input is NonNullable<object>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/common",
3
- "version": "10.0.0",
3
+ "version": "11.0.0",
4
4
  "homepage": "https://github.com/electrovir/augment-vir/tree/main/packages/common",
5
5
  "bugs": {
6
6
  "url": "https://github.com/electrovir/augment-vir/issues"