Skip to main content

Interface: SettingsRow

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

Represents a row in the settings table.

Remarksโ€‹

Used for storing application-wide key-value settings.

Hierarchyโ€‹

View Summary

Extendsโ€‹

Propertiesโ€‹

id?โ€‹

optional id?: string | number

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

Unique identifier for the row.

Remarksโ€‹

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

Inherited fromโ€‹

BaseRow.id


key?โ€‹

optional key?: string

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

The unique key for the setting.


value?โ€‹

optional value?: string

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

The value associated with the key.