ionic-orm-x
Version: 
Data-mapper ORM for Ionic WebSQL and SQLite
18 lines (17 loc) • 433 B
TypeScript
/**
 * Arguments for RelationCountMetadata class.
 */
export interface RelationCountMetadataArgs {
    /**
     * Class to which this decorator is applied.
     */
    readonly target: Function;
    /**
     * Class's property name to which this decorator is applied.
     */
    readonly propertyName: string;
    /**
     * Target's relation which it should count.
     */
    readonly relation: string | ((object: any) => any);
}