graycoreio/daffodil

View on GitHub
libs/core/src/collection/countable.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Represents an entity that contains a countable number of items.
 */
export interface DaffCountable {
  /**
   * The number of items contained or tracked by this entity.
   */
  count: number;
}