database-builder
Version:
Library to assist in creating and maintaining SQL commands.
11 lines (10 loc) • 445 B
TypeScript
import { FieldType } from "./core/enums/field-type";
import { PrimaryKeyType } from "./core/enums/primary-key-type";
export declare class MapperColumn {
column: string;
fieldType: FieldType;
fieldReference: string;
primaryKeyType?: PrimaryKeyType;
tableReference?: string;
constructor(column?: string, fieldType?: FieldType, fieldReference?: string, primaryKeyType?: PrimaryKeyType, tableReference?: string);
}