UNPKG

261 BTypeScriptView Raw
1/**
2 * Arguments for NamingStrategyMetadata class.
3 */
4export interface NamingStrategyMetadataArgs {
5 /**
6 * Class to which this column is applied.
7 */
8 readonly target: Function;
9 /**
10 * Strategy name.
11 */
12 readonly name: string;
13}