import { GuidValue } from "."; export interface StoreDefintion { id: GuidValue; name?: string; } export interface StateMutation { oldState: T; newState: T; } export interface MutatableState { state: T; }