UNPKG

@lumieslab/stasho

Version:

lightweight state management library

8 lines (7 loc) 193 B
export interface RefContext { refMap: WeakMap<any, string>; } export interface StateContext { stateMap: Map<string, unknown>; } export type CombinedContext = RefContext & StateContext;