graycoreio/daffodil

View on GitHub
libs/core/src/identifiable/identifiable.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ID } from '../types/id.type';

/**
 * An object that has an identifier.
 */
export interface DaffIdentifiable {
  /**
   * The identifier.
   */
  id: ID;
}