UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

8 lines (7 loc) 153 B
export type Id = string | number; export type Key = Id; export type Code = Id; export type HasId = { id: Id; }; export declare const toId: () => Id;