orderiom-api-package 0.3.48 → 0.3.49
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/index.d.ts +16 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -30,4 +30,20 @@ export interface AuthState<SignedIn extends boolean> {
|
|
|
30
30
|
email: string | null
|
|
31
31
|
fullAddress: Record<string, any>
|
|
32
32
|
userAddress: Record<string, any>[]
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface ManagerState {
|
|
36
|
+
[key: string]: any
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface ProductState {
|
|
40
|
+
[key: string]: any
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface OrderState {
|
|
44
|
+
[key: string]: any
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface RestaurantState {
|
|
48
|
+
[key: string]: any
|
|
33
49
|
}
|