zustand-utils
Advanced tools
Comparing version 1.2.1 to 1.2.2
import { StoreApi } from 'zustand'; | ||
export declare const createStoreUpdater: <T>(storeApi: StoreApi<T>) => (key: keyof T, value: any, deps?: any[], setStoreState?: ((param: any) => void) | undefined) => void; | ||
declare type WithoutCallSignature<T> = { | ||
[K in keyof T]: T[K]; | ||
}; | ||
export declare const createStoreUpdater: <T>(storeApi: WithoutCallSignature<StoreApi<T>>) => (key: keyof T, value: any, deps?: any[], setStoreState?: ((param: any) => void) | undefined) => void; | ||
export {}; |
import { StoreApi } from 'zustand'; | ||
export declare const createStoreUpdater: <T>(storeApi: StoreApi<T>) => (key: keyof T, value: any, deps?: any[], setStoreState?: ((param: any) => void) | undefined) => void; | ||
declare type WithoutCallSignature<T> = { | ||
[K in keyof T]: T[K]; | ||
}; | ||
export declare const createStoreUpdater: <T>(storeApi: WithoutCallSignature<StoreApi<T>>) => (key: keyof T, value: any, deps?: any[], setStoreState?: ((param: any) => void) | undefined) => void; | ||
export {}; |
{ | ||
"name": "zustand-utils", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "some utils for zustand", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30832
289