Interface: BaseRow
Defined in: shared/types/database.ts:23
Base interface for all database row types.
Remarksโ
Provides a common optional id property for tables that use numeric or
string IDs.
Hierarchyโ
Extended byโ
Propertiesโ
id?โ
optionalid?:string|number
Defined in: shared/types/database.ts:30
Unique identifier for the row.
Remarksโ
May be a number (autoincrement) or string (custom).