UNPKG

@altostra/core

Version:

Core library for shared types and logic

7 lines (6 loc) 162 B
import type { EntityId } from "../CustomTypes/EntityId"; import type { Name } from "./Name"; export interface IDomainEntity { id: EntityId; name: Name; }