UNPKG

@cbnsndwch/ghl-app-contracts

Version:
10 lines (9 loc) 163 B
/** * A data contract that includes a unique identifier */ export interface HasId { /** * The unique identifier of the record */ id: string; }