import { EntitySubscriberInterface } from 'typeorm'; import { Feature } from './feature.entity'; export declare class FeatureSubscriber implements EntitySubscriberInterface { /** * Indicates that this subscriber only listen to Feature events. */ listenTo(): typeof Feature; /** * Called after entity is loaded. */ afterLoad(entity: any): void; }