Tldraw/packages/store/src/lib/BaseRecord.ts

25 wiersze
699 B
TypeScript

/** @public */
export type ID<R extends UnknownRecord> = string & { __type__: R }
/** @public */
export type IdOf<R extends UnknownRecord> = R['id']
/**
* The base record that all records must extend.
*
* @public
*/
export interface BaseRecord<TypeName extends string, Id extends ID<UnknownRecord>> {
readonly id: Id
readonly typeName: TypeName
}
/** @public */
export type UnknownRecord = BaseRecord<string, ID<UnknownRecord>>
export type OmitMeta<R extends UnknownRecord> = R extends R ? Omit<R, 'id' | 'typeName'> : R
export function isRecord(record: unknown): record is UnknownRecord {
return typeof record === 'object' && record !== null && 'id' in record && 'typeName' in record
}