UNPKG

ionic-orm-x

Version:

Data-mapper ORM for Ionic WebSQL and SQLite

14 lines (13 loc) 283 B
/** * Describes column options. */ export interface JoinColumnOptions { /** * Name of the column. */ readonly name?: string; /** * Name of the column in the entity to which this column is referenced. */ readonly referencedColumnName?: string; }