UNPKG

eventstorming

Version:
8 lines (7 loc) 200 B
import { Identity } from "./Identity"; export declare class Entity<ID extends Identity<any>> { id: any; constructor(name: any); getIdentity(): ID; equals(that: Entity<ID>): boolean; }