Skip to content

Commit

Permalink
feat(core): add error to DaffState (#2781)
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed May 13, 2024
1 parent 207a75c commit bb715eb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion libs/core/state/src/states/state.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,10 @@ export const enum DaffState {
* Use DaffState.Stable instead.
*/
// eslint-disable-next-line @typescript-eslint/no-duplicate-enum-values
Complete = 'Stable'
Complete = 'Stable',

/**
* Indicates that the most recent operation specififc to this entity has failed.
*/
Error = 'Error'
}

0 comments on commit bb715eb

Please sign in to comment.