import { RecordType } from './RecordType' import { Store } from './Store' type ExtractRecordType> = T extends Store ? R : never type ExtractR> = T extends RecordType ? S : never /** * Get the type of all records in a record store. * @public */ export type AllRecords> = ExtractR>