Function: isValidHistoryRow()
function isValidHistoryRow(obj: unknown): obj is HistoryRow;
Defined in: shared/types/database.ts:267
Determines if an object conforms to the HistoryRow interface.
Parametersโ
objโ
unknown
The object to check.
Returnsโ
obj is HistoryRow
true when the object matches the HistoryRow structure;
otherwise false.
Remarksโ
Checks for required properties and value types to ensure type safety.