@hangtime/grip-connect
Version:
Griptonite Motherboard, Tindeq Progressor, PitchSix Force Board, WHC-06, Entralpi, Climbro, mySmartBoard: Bluetooth API Force-Sensing strength analysis for climbers
18 lines • 424 B
TypeScript
/**
* Represents the base properties for an entity.
*/
export interface IBase {
/**
* Unique identifier for the entity (optional).
*/
id?: string;
/**
* The date and time when the entity was created (optional).
*/
createdAt?: Date;
/**
* The date and time when the entity was last updated (optional).
*/
updatedAt?: Date;
}
//# sourceMappingURL=base.interface.d.ts.map