UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

9 lines (8 loc) 147 B
import { Id } from './Id'; export type IdNamePlain = { id: Id; name: string; }; export type IdName = IdNamePlain & { slug?: string; };