ionic-orm-2
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
14 lines • 482 B
JavaScript
/**
* This metadata contains all information about entity's listeners.
*/
export class EntityListenerMetadata {
// ---------------------------------------------------------------------
// Constructor
// ---------------------------------------------------------------------
constructor(args) {
this.target = args.target;
this.propertyName = args.propertyName;
this.type = args.type;
}
}
//# sourceMappingURL=EntityListenerMetadata.js.map