import { EntitySubscriberInterface } from "typeorm"; import { IEmailTemplate } from "@metad/contracts"; import { EmailTemplate } from "./email-template.entity"; export declare class EmailTemplateSubscriber implements EntitySubscriberInterface { /** * Indicates that this subscriber only listen to EmailTemplate events. */ listenTo(): typeof EmailTemplate; /** * Called after entity is loaded. */ afterLoad(entity: IEmailTemplate): void; }