UNPKG

@cbnsndwch/ghl-app-contracts

Version:

Data contracts for GHL Marketplace apps

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; }