타입 별칭: WithVirtualProps<T, TKey>
type WithVirtualProps<T, TKey> = T & VirtualRowProps<TKey>;
정의 위치: packages/db/src/virtual-props.ts:117
행 타입에 가상 속성을 추가합니다.
타입 매개변수
T
T extends object
기본 행 타입
TKey
TKey extends string | number = string | number
행 키의 타입
예제
type User = { id: string; name: string }
type UserWithVirtual = WithVirtualProps<User, string>
// { id: string; name: string; $synced: boolean; $origin: 'local' | 'remote'; $key: string; $collectionId: string }