@athenna/database
Version:
The Athenna database handler for SQL/NoSQL.
15 lines (14 loc) • 449 B
TypeScript
/**
* @athenna/database
*
* (c) João Lenon <lenon@athenna.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import 'reflect-metadata';
import type { ColumnOptions } from '#src/types/columns/ColumnOptions';
/**
* Create column for model class.
*/
export declare function Column(options?: Omit<ColumnOptions, 'property' | 'hasSetName'>): PropertyDecorator;