entropic-bond 1.34.10 → 1.34.11
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.
|
@@ -8,7 +8,7 @@ export declare type PersistentObject<T extends Persistent> = Omit<SomeClassProps
|
|
|
8
8
|
};
|
|
9
9
|
};
|
|
10
10
|
export declare type MakePersistentObjects<T> = {
|
|
11
|
-
[A in keyof T]: T[A] extends Persistent ? PersistentObject<T[A]> : T[A]
|
|
11
|
+
[A in keyof T]: T[A] extends Persistent ? PersistentObject<T[A]> : MakePersistentObjects<T[A]>;
|
|
12
12
|
};
|
|
13
13
|
export declare type Collections = {
|
|
14
14
|
[collectionPath: string]: PersistentObject<Persistent>[];
|