BelongsToOptions

View Source

Summary

Options for defining a belongsTo relation.

Signature

type BelongsToOptions<source, target> = {
  foreignKey?: KeySelector<source>;
  targetKey?: KeySelector<target>;
};