@aerogel/core 0.1.1-next.ce10b6d6ba4cd98145cf14595fb4f292b979e2dc → 0.1.1-next.d6144642389e7fbf7ef662ecdbb069e185750112
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
|
@@ -2366,7 +2366,9 @@ export declare const Provide: __VLS_WithTemplateSlots_34<typeof __VLS_component_
|
|
|
2366
2366
|
|
|
2367
2367
|
export declare type ReactiveSet<T = unknown> = ReturnType<typeof reactiveSet<T>>;
|
|
2368
2368
|
|
|
2369
|
-
export declare function reactiveSet<T>(initial?: T[] | Set<T
|
|
2369
|
+
export declare function reactiveSet<T>(initial?: T[] | Set<T>, options?: {
|
|
2370
|
+
equals?: (a: T, b: T) => boolean;
|
|
2371
|
+
}): {
|
|
2370
2372
|
values(): T[];
|
|
2371
2373
|
has(item: T): boolean;
|
|
2372
2374
|
add(item: T): void;
|
|
@@ -2937,6 +2939,11 @@ declare module '@aerogel/core' {
|
|
|
2937
2939
|
}
|
|
2938
2940
|
|
|
2939
2941
|
|
|
2942
|
+
declare global {
|
|
2943
|
+
var __aerogelEvents__: AerogelGlobalEvents | undefined;
|
|
2944
|
+
}
|
|
2945
|
+
|
|
2946
|
+
|
|
2940
2947
|
declare module '@aerogel/core' {
|
|
2941
2948
|
interface EventsPayload {
|
|
2942
2949
|
error: {
|
|
@@ -2947,11 +2954,6 @@ declare module '@aerogel/core' {
|
|
|
2947
2954
|
}
|
|
2948
2955
|
|
|
2949
2956
|
|
|
2950
|
-
declare global {
|
|
2951
|
-
var __aerogelEvents__: AerogelGlobalEvents | undefined;
|
|
2952
|
-
}
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
2957
|
declare module '@aerogel/core' {
|
|
2956
2958
|
interface EventsPayload {
|
|
2957
2959
|
'purge-storage': void;
|