@aerogel/core 0.1.1-next.6005e06a52b9294023bae608af05bf826d281a4d → 0.1.1-next.67bc601cc533a1a67bccc4e35d9abb10108ced7c
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
CHANGED
|
@@ -2904,11 +2904,6 @@ declare module 'vue' {
|
|
|
2904
2904
|
}
|
|
2905
2905
|
|
|
2906
2906
|
|
|
2907
|
-
declare global {
|
|
2908
|
-
var testingRuntime: AerogelTestingRuntime | undefined;
|
|
2909
|
-
}
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
2907
|
declare module '@aerogel/core' {
|
|
2913
2908
|
interface AerogelOptions {
|
|
2914
2909
|
components?: Partial<Partial<UIComponents>>;
|
|
@@ -2923,14 +2918,12 @@ declare module '@aerogel/core' {
|
|
|
2923
2918
|
|
|
2924
2919
|
|
|
2925
2920
|
declare global {
|
|
2926
|
-
var
|
|
2921
|
+
var testingRuntime: AerogelTestingRuntime | undefined;
|
|
2927
2922
|
}
|
|
2928
2923
|
|
|
2929
2924
|
|
|
2930
|
-
declare
|
|
2931
|
-
|
|
2932
|
-
'purge-storage': void;
|
|
2933
|
-
}
|
|
2925
|
+
declare global {
|
|
2926
|
+
var __aerogelEvents__: AerogelGlobalEvents | undefined;
|
|
2934
2927
|
}
|
|
2935
2928
|
|
|
2936
2929
|
|
|
@@ -2942,3 +2935,10 @@ declare module '@aerogel/core' {
|
|
|
2942
2935
|
};
|
|
2943
2936
|
}
|
|
2944
2937
|
}
|
|
2938
|
+
|
|
2939
|
+
|
|
2940
|
+
declare module '@aerogel/core' {
|
|
2941
|
+
interface EventsPayload {
|
|
2942
|
+
'purge-storage': void;
|
|
2943
|
+
}
|
|
2944
|
+
}
|