@aerogel/core 0.1.1-next.785e2c42ed379bc0f268c637d1023a51f5832d80 → 0.1.1
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/aerogel-core.d.ts +8 -8
- package/package.json +1 -1
package/dist/aerogel-core.d.ts
CHANGED
|
@@ -2617,6 +2617,14 @@ export declare type Variants<T extends Record<string, string | boolean>> = Requi
|
|
|
2617
2617
|
export { }
|
|
2618
2618
|
|
|
2619
2619
|
|
|
2620
|
+
declare module '@aerogel/core' {
|
|
2621
|
+
interface EventsPayload {
|
|
2622
|
+
'application-ready': void;
|
|
2623
|
+
'application-mounted': void;
|
|
2624
|
+
}
|
|
2625
|
+
}
|
|
2626
|
+
|
|
2627
|
+
|
|
2620
2628
|
declare module '@aerogel/core' {
|
|
2621
2629
|
interface AerogelOptions {
|
|
2622
2630
|
directives?: Record<string, Directive>;
|
|
@@ -2631,14 +2639,6 @@ declare module 'vue' {
|
|
|
2631
2639
|
}
|
|
2632
2640
|
|
|
2633
2641
|
|
|
2634
|
-
declare module '@aerogel/core' {
|
|
2635
|
-
interface EventsPayload {
|
|
2636
|
-
'application-ready': void;
|
|
2637
|
-
'application-mounted': void;
|
|
2638
|
-
}
|
|
2639
|
-
}
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
2642
|
declare module '@aerogel/core' {
|
|
2643
2643
|
interface AerogelOptions {
|
|
2644
2644
|
handleError?(error: ErrorSource): boolean;
|