common.ts 156 B

123456789
  1. /*
  2. * Common types and interfaces
  3. */
  4. import { HasObjectId } from './has-object-id';
  5. // Foreign key field
  6. export type Ref<T> = string | T & HasObjectId;