@moonbase.sh/storefront 0.2.69 → 0.2.72

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.
@@ -2,10 +2,10 @@ declare type DeepPartial<T> = T extends object ? {
2
2
  [P in keyof T]?: DeepPartial<T[P]>;
3
3
  } : T;
4
4
 
5
- declare const moonbase: Moonbase_2;
6
- export default moonbase;
5
+ declare const Moonbase_2: MoonbaseImpl;
6
+ export default Moonbase_2;
7
7
 
8
- declare class Moonbase_2 implements MoonbaseInstance {
8
+ declare class MoonbaseImpl implements MoonbaseInstance {
9
9
  private initialized;
10
10
  private pinia;
11
11
  private storefront;