graycoreio/daffodil

View on GitHub
libs/core/state/src/states/stateable.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { DaffState } from './state.enum';

/**
 * The interface an object must implement to consistently describe its current
 * state.
 */
export interface DaffStateable<T extends DaffState = DaffState> {
  daffState: T;
}