@hangtime/grip-connect
Version:
Griptonite Motherboard, Tindeq Progressor, PitchSix Force Board, WHC-06, Entralpi, Climbro, mySmartBoard: Bluetooth API Force-Sensing strength analysis for climbers
17 lines (11 loc) • 316 B
text/typescript
import type { IBase } from "../interfaces/base.interface.js"
export abstract class BaseModel {
id?: string
createdAt?: Date
updatedAt?: Date
constructor(base: IBase) {
this.id = base.id ?? globalThis.crypto?.randomUUID()
this.createdAt = base.createdAt
this.updatedAt = base.updatedAt
}
}