UNPKG

ionic-orm-x

Version:

Data-mapper ORM for Ionic WebSQL and SQLite

14 lines (13 loc) 388 B
/** * All types that relation can be. */ export declare type RelationType = "one-to-one" | "one-to-many" | "many-to-one" | "many-to-many"; /** * Provides a constants for each relation type. */ export declare class RelationTypes { static ONE_TO_ONE: RelationType; static ONE_TO_MANY: RelationType; static MANY_TO_ONE: RelationType; static MANY_TO_MANY: RelationType; }