UNPKG

manifest

Version:

The backend for AI code editors

7 lines (6 loc) 330 B
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; }