graycoreio/daffodil

View on GitHub
libs/design/src/core/mutable/mutable.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * An interface for giving a component the ability to display a mutating UI.
 * In order to be mutable, our class must implement this property.
 */
export interface DaffMutable {
  mutating: boolean;
}