import { DataSource, EntitySubscriberInterface, UpdateEvent } from 'typeorm'; import { DeviceControlEntity } from '../entities/devices.entity'; export declare class DeviceControlEntitySubscriber implements EntitySubscriberInterface { private readonly dataSource; constructor(dataSource: DataSource); listenTo(): typeof DeviceControlEntity; beforeUpdate(event: UpdateEvent): void; }