UNPKG

ionic-orm-2

Version:

Data-mapper ORM for Ionic WebSQL and SQLite

19 lines (18 loc) 419 B
/** * Primary key from the database stored in this class. */ export declare class PrimaryKeySchema { /** * Key name. */ name: string; /** * Column to which this primary key is bind. */ columnName: string; constructor(name: string, columnName: string); /** * Creates a new copy of this primary key with exactly same properties. */ clone(): PrimaryKeySchema; }