import { ActionTypes } from "./ActionTypes"; /** * The Delta update interface models * the type of the update and the entities * associated with the update. */ export interface Delta { type: ActionTypes; entries: E[]; }