UNPKG

ionic-orm-3

Version:

Data-mapper ORM for Ionic WebSQL and SQLite

16 lines 484 B
import { getMetadataArgsStorage } from "../../../index"; /** * Special type of the table used in the single-table inherited tables. */ export function SingleTableChild() { return function (target) { var args = { target: target, name: undefined, type: "single-table-child", orderBy: undefined }; getMetadataArgsStorage().tables.add(args); }; } //# sourceMappingURL=SingleTableChild.js.map