ionic-orm-x
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
20 lines (19 loc) • 583 B
TypeScript
import { RelationCountMetadataArgs } from "../metadata-args/RelationCountMetadataArgs";
/**
* Contains all information about entity's relation count.
*/
export declare class RelationCountMetadata {
/**
* Relation which need to count.
*/
readonly relation: string | ((object: any) => any);
/**
* Target class to which metadata is applied.
*/
readonly target: Function | string;
/**
* Target's property name to which this metadata is applied.
*/
readonly propertyName: string;
constructor(args: RelationCountMetadataArgs);
}