@authup/server-api
Version:
This is a standalone application.
9 lines • 495 B
TypeScript
import type { EntitySubscriberInterface, InsertEvent, RemoveEvent, UpdateEvent } from 'typeorm';
import { RobotEntity } from '../../domains';
export declare class RobotSubscriber implements EntitySubscriberInterface<RobotEntity> {
listenTo(): Function | string;
afterInsert(event: InsertEvent<RobotEntity>): Promise<any>;
afterUpdate(event: UpdateEvent<RobotEntity>): Promise<any>;
afterRemove(event: RemoveEvent<RobotEntity>): Promise<any>;
}
//# sourceMappingURL=robot.d.ts.map