Skip to main content

Function: isValidMonitorRow()

isValidMonitorRow(obj: unknown): obj is MonitorRow

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

Determines if an object conforms to the MonitorRow interface.

Parametersโ€‹

objโ€‹

unknown

The object to check.

Returnsโ€‹

obj is MonitorRow

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

Remarksโ€‹

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