Home > @liquity/lib-base > LiquityStoreState
Type of LiquityStore's state.
Signature:
export declare type LiquityStoreState<T = unknown> = LiquityStoreBaseState & LiquityStoreDerivedState & T;
References: LiquityStoreBaseState, LiquityStoreDerivedState
It combines all properties of LiquityStoreBaseState and LiquityStoreDerivedState with optional extra state added by the particular LiquityStore
implementation.
The type parameter T
may be used to type the extra state.