타입 별칭: InferCollectionType<T>
type InferCollectionType<T> = T extends CollectionImpl<infer TOutput, infer TKey, any, any, any> ? WithVirtualProps<TOutput, TKey> : T extends CollectionOptionsIdentity<infer TOutput, infer TKey, any, any, any> ? WithVirtualProps<TOutput, TKey> : never;
정의 위치: packages/db/src/query/builder/types.ts:105
InferCollectionType - CollectionImpl에서 TypeScript 타입을 추출합니다
이 헬퍼는 컬렉션 자체를 생성할 때 사용한 것과 동일한 타입을 가져오도록 합니다. 사용자가 명시적으로 전달한 타입이거나 스키마 출력 타입일 수 있습니다.
타입 매개변수
T
T