Skip to main content

Function: isValidSiteRow()

isValidSiteRow(obj: unknown): obj is SiteRow

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

Determines if an object conforms to the SiteRow interface.

Parametersโ€‹

objโ€‹

unknown

The object to check.

Returnsโ€‹

obj is SiteRow

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

Remarksโ€‹

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