UNPKG

@fireflysemantics/slice

Version:
11 lines (10 loc) 235 B
import { ActionTypes } from "./ActionTypes"; /** * The Delta update interface models * the type of the update and the entities * associated with the update. */ export interface Delta<E> { type: ActionTypes; entries: E[]; }