ts-db-helper
Version:
Simple ORM based on TypeScript
21 lines (20 loc) • 503 B
TypeScript
/**
* @class TableConfig
*
* @description
* a table configurator for model, @see {Table} annotation
*
* @author Olivier Margarit
* @since 0.1
*/
export declare class TableConfig {
/**
* @property {string} name, optional configuration. If not provided, the default
* value is th class name
*/
name?: string;
/**
* @property {number} version, the table model version, information to help migration
*/
version?: number | undefined;
}