Skip to main content

Function: isValidHistoryRow()

isValidHistoryRow(obj: unknown): obj is HistoryRow

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

Determines if an object conforms to the HistoryRow interface.

Parametersโ€‹

objโ€‹

unknown

The object to check.

Returnsโ€‹

obj is HistoryRow

True if the object matches the HistoryRow structure; otherwise, false.

Remarksโ€‹

Checks for required properties and value types to ensure type safety.