Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 958 Bytes

lib-base.liquitystorestate.md

File metadata and controls

21 lines (12 loc) · 958 Bytes

Home > @liquity/lib-base > LiquityStoreState

LiquityStoreState type

Type of LiquityStore's state.

Signature:

export declare type LiquityStoreState<T = unknown> = LiquityStoreBaseState & LiquityStoreDerivedState & T;

References: LiquityStoreBaseState, LiquityStoreDerivedState

Remarks

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.