UNPKG

@omnia/fx-models

Version:
13 lines (12 loc) 230 B
import { GuidValue } from "."; export interface StoreDefintion { id: GuidValue; name?: string; } export interface StateMutation<T> { oldState: T; newState: T; } export interface MutatableState<T> { state: T; }