@primate/core 0.9.8 → 0.9.9
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.
|
@@ -97,6 +97,7 @@ type ReadSort = Dict<"asc" | "desc">;
|
|
|
97
97
|
export default class Store<T extends StoreInput, N extends string = string> implements Serializable {
|
|
98
98
|
#private;
|
|
99
99
|
[brand]: boolean;
|
|
100
|
+
readonly Insert: Insertable<T>;
|
|
100
101
|
readonly Schema: Schema<T>;
|
|
101
102
|
static is(x: unknown): x is Store<any, any>;
|
|
102
103
|
constructor(init: Init<T, N>);
|