import { getMetadataArgsStorage } from "../../";
|
import { EventListenerTypes } from "../../metadata/types/EventListenerTypes";
|
/**
|
* Calls a method on which this decorator is applied after this entity insertion.
|
*/
|
export function AfterInsert() {
|
return function (object, propertyName) {
|
getMetadataArgsStorage().entityListeners.push({
|
target: object.constructor,
|
propertyName: propertyName,
|
type: EventListenerTypes.AFTER_INSERT
|
});
|
};
|
}
|
|
//# sourceMappingURL=AfterInsert.js.map
|