UNPKG

@omnia/fx-models

Version:
12 lines (11 loc) 222 B
import { GuidValue } from '.'; export interface StoreDefintion { id: GuidValue; } export interface StateMutation<T> { oldState: T; newState: T; } export interface MutatableState<T> { state: T; }