UNPKG

ts-db-helper

Version:
20 lines 501 B
/** * @class TableConfig * * @description * a table configurator for model, @see {Table} annotation * * @author Olivier Margarit * @since 0.1 */ var TableConfig = /** @class */ (function () { function TableConfig() { /** * @property {number} version, the table model version, information to help migration */ this.version = 0; } return TableConfig; }()); export { TableConfig }; //# sourceMappingURL=table.configurator.js.map