@asaidimu/utils-store 2.0.2 → 2.0.4
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/index.d.mts +2 -1
- package/index.d.ts +2 -1
- package/index.js +1 -1298
- package/index.mjs +1 -1282
- package/package.json +3 -2
package/index.d.mts
CHANGED
@@ -84,6 +84,7 @@ type MiddlewareConfig<T> = {
|
|
84
84
|
action: Middleware<T>;
|
85
85
|
});
|
86
86
|
declare const DELETE_SYMBOL: unique symbol;
|
87
|
+
declare const author = "https://github.com/asaidimu";
|
87
88
|
|
88
89
|
/**
|
89
90
|
* Reactive Data Store Implementation
|
@@ -284,4 +285,4 @@ declare class StoreObserver<T extends object> {
|
|
284
285
|
disconnect(): void;
|
285
286
|
}
|
286
287
|
|
287
|
-
export { type BlockingMiddleware, DELETE_SYMBOL, type DataStore, type DebugEvent, type DeepPartial, type Middleware, type MiddlewareConfig, type MiddlewareExecution, type ObservabilityOptions, ReactiveDataStore, type StateUpdater, type StoreEvent, type StoreExecutionState, type StoreMetrics, StoreObserver };
|
288
|
+
export { type BlockingMiddleware, DELETE_SYMBOL, type DataStore, type DebugEvent, type DeepPartial, type Middleware, type MiddlewareConfig, type MiddlewareExecution, type ObservabilityOptions, ReactiveDataStore, type StateUpdater, type StoreEvent, type StoreExecutionState, type StoreMetrics, StoreObserver, author };
|
package/index.d.ts
CHANGED
@@ -84,6 +84,7 @@ type MiddlewareConfig<T> = {
|
|
84
84
|
action: Middleware<T>;
|
85
85
|
});
|
86
86
|
declare const DELETE_SYMBOL: unique symbol;
|
87
|
+
declare const author = "https://github.com/asaidimu";
|
87
88
|
|
88
89
|
/**
|
89
90
|
* Reactive Data Store Implementation
|
@@ -284,4 +285,4 @@ declare class StoreObserver<T extends object> {
|
|
284
285
|
disconnect(): void;
|
285
286
|
}
|
286
287
|
|
287
|
-
export { type BlockingMiddleware, DELETE_SYMBOL, type DataStore, type DebugEvent, type DeepPartial, type Middleware, type MiddlewareConfig, type MiddlewareExecution, type ObservabilityOptions, ReactiveDataStore, type StateUpdater, type StoreEvent, type StoreExecutionState, type StoreMetrics, StoreObserver };
|
288
|
+
export { type BlockingMiddleware, DELETE_SYMBOL, type DataStore, type DebugEvent, type DeepPartial, type Middleware, type MiddlewareConfig, type MiddlewareExecution, type ObservabilityOptions, ReactiveDataStore, type StateUpdater, type StoreEvent, type StoreExecutionState, type StoreMetrics, StoreObserver, author };
|