b14063fe06
Re add prettier in eslint.configs
18 lines
268 B
TypeScript
18 lines
268 B
TypeScript
export interface WorkspaceJoinColumnsMetadataArgs {
|
|
/**
|
|
* Class to which relation is applied.
|
|
*/
|
|
|
|
readonly target: Function;
|
|
|
|
/**
|
|
* Relation name.
|
|
*/
|
|
readonly relationName: string;
|
|
|
|
/**
|
|
* Relation label.
|
|
*/
|
|
readonly joinColumn: string;
|
|
}
|