@moonbase.sh/storefront 0.4.50 → 0.4.52
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/dist/moonbase.d.ts +2 -2
- package/dist/moonbase.js +3773 -3766
- package/dist/moonbase.umd.cjs +14 -14
- package/package.json +2 -2
package/dist/moonbase.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export declare const instanceKey: InjectionKey<MoonbaseInstance>;
|
|
|
21
21
|
declare const Moonbase_2: MoonbaseImpl;
|
|
22
22
|
export default Moonbase_2;
|
|
23
23
|
|
|
24
|
-
declare enum MoonbaseEvent {
|
|
24
|
+
export declare enum MoonbaseEvent {
|
|
25
25
|
SignedIn = "signed-in",
|
|
26
26
|
SignedUp = "signed-up",
|
|
27
27
|
SignedOut = "signed-out",
|
|
@@ -34,7 +34,7 @@ declare enum MoonbaseEvent {
|
|
|
34
34
|
CheckoutCompleted = "checkout-completed"
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
declare interface MoonbaseEventArgs {
|
|
37
|
+
export declare interface MoonbaseEventArgs {
|
|
38
38
|
[MoonbaseEvent.SignedIn]: {
|
|
39
39
|
user: User;
|
|
40
40
|
};
|