function hasVirtualProps(value): value is VirtualRowProps<string | number>;
Defined in: packages/db/src/virtual-props.ts:145
Checks if a value has virtual properties attached.
unknown
The value to check
value is VirtualRowProps<string | number>
true if the value has virtual properties
if (hasVirtualProps(row)) {
console.log('Synced:', row.$synced)
}