manifest
Version:
The backend for AI code editors
7 lines (6 loc) • 330 B
TypeScript
import { DatabaseConnection, PropType } from '../../../../types/src';
import { ColumnType } from 'typeorm';
export declare class ColumnService {
static getColumnTypes(dbConnection: DatabaseConnection): Record<PropType, ColumnType>;
static getColumnType(dbConnection: DatabaseConnection, propType: PropType): ColumnType;
}