@nu-art/ts-common 0.99.48 → 0.99.51
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/package.json +1 -1
- package/utils/types.d.ts +1 -1
package/package.json
CHANGED
package/utils/types.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ export declare type DB_Object = DB_BaseObject & {
|
|
|
53
53
|
__created: number;
|
|
54
54
|
__updated: number;
|
|
55
55
|
};
|
|
56
|
-
export declare type
|
|
56
|
+
export declare type PreDB<T extends DB_Object> = PartialProperties<T, keyof DB_Object>;
|
|
57
57
|
export declare type OmitDBObject<T extends DB_Object> = Omit<T, keyof DB_Object>;
|
|
58
58
|
export declare type Draftable = {
|
|
59
59
|
_isDraft: boolean;
|