Skip to main content

Interface: BaseRow

Defined in: shared/types/database.ts:18

Base interface for all database row types.

Remarksโ€‹

Provides a common optional id property for tables that use numeric or string IDs.

Extended byโ€‹

Propertiesโ€‹

id?โ€‹

optional id: string | number

Defined in: shared/types/database.ts:25

Unique identifier for the row.

Remarksโ€‹

May be a number (autoincrement) or string (custom).