import { EntitySubscriberInterface } from "typeorm"; import { Organization } from "./organization.entity"; export declare class OrganizationSubscriber implements EntitySubscriberInterface { /** * Indicates that this subscriber only listen to Organization events. */ listenTo(): typeof Organization; /** * Called after entity is loaded. */ afterLoad(entity: Organization): void; }