@augment-vir/common 12.9.1 → 12.10.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.
|
@@ -2,6 +2,9 @@ import { JsonCompatibleValue } from '../json-compatible';
|
|
|
2
2
|
export type PartialAndNullable<T extends object> = {
|
|
3
3
|
[Prop in keyof T]?: T[Prop] | null | undefined;
|
|
4
4
|
};
|
|
5
|
+
export type PartialAndUndefined<T extends object> = {
|
|
6
|
+
[Prop in keyof T]?: T[Prop] | undefined;
|
|
7
|
+
};
|
|
5
8
|
export declare function isObject(input: any): input is NonNullable<object>;
|
|
6
9
|
export declare function areJsonEqual(a: Readonly<JsonCompatibleValue | undefined>, b: Readonly<JsonCompatibleValue | undefined>): boolean;
|
|
7
10
|
/** The input here must be serializable otherwise JSON parsing errors will be thrown */
|
|
@@ -2,6 +2,9 @@ import { JsonCompatibleValue } from '../json-compatible';
|
|
|
2
2
|
export type PartialAndNullable<T extends object> = {
|
|
3
3
|
[Prop in keyof T]?: T[Prop] | null | undefined;
|
|
4
4
|
};
|
|
5
|
+
export type PartialAndUndefined<T extends object> = {
|
|
6
|
+
[Prop in keyof T]?: T[Prop] | undefined;
|
|
7
|
+
};
|
|
5
8
|
export declare function isObject(input: any): input is NonNullable<object>;
|
|
6
9
|
export declare function areJsonEqual(a: Readonly<JsonCompatibleValue | undefined>, b: Readonly<JsonCompatibleValue | undefined>): boolean;
|
|
7
10
|
/** The input here must be serializable otherwise JSON parsing errors will be thrown */
|
|
@@ -2,6 +2,9 @@ import { JsonCompatibleValue } from '../json-compatible';
|
|
|
2
2
|
export type PartialAndNullable<T extends object> = {
|
|
3
3
|
[Prop in keyof T]?: T[Prop] | null | undefined;
|
|
4
4
|
};
|
|
5
|
+
export type PartialAndUndefined<T extends object> = {
|
|
6
|
+
[Prop in keyof T]?: T[Prop] | undefined;
|
|
7
|
+
};
|
|
5
8
|
export declare function isObject(input: any): input is NonNullable<object>;
|
|
6
9
|
export declare function areJsonEqual(a: Readonly<JsonCompatibleValue | undefined>, b: Readonly<JsonCompatibleValue | undefined>): boolean;
|
|
7
10
|
/** The input here must be serializable otherwise JSON parsing errors will be thrown */
|