/** * Selection difference schema. * * Used for selection snapshot comparisons. * * @export */ export interface ISelectionDiff { /** * The added list. * */ add: Partial[]; /** * The removed list. * */ remove: Partial[]; }