vue-psa-architecture/src/domain/common/entity.ts

6 lines
76 B
TypeScript

export type EntityId = string;
export interface Entity {
id: EntityId;
}