UNPKG

546 BTypeScriptView Raw
1/**
2 * Arguments for JoinColumnMetadata class.
3 */
4export interface JoinColumnMetadataArgs {
5 /**
6 * Class to which this column is applied.
7 */
8 target: Function | string;
9 /**
10 * Class's property name to which this column is applied.
11 */
12 propertyName: string;
13 /**
14 * Name of the column.
15 */
16 name?: string;
17 /**
18 * Name of the column in the entity to which this column is referenced.
19 * This is column property name, not a column database name.
20 */
21 referencedColumnName?: string;
22}