UNPKG

@authup/server-api

Version:

This is a standalone application.

9 lines 524 B
import type { EntitySubscriberInterface, InsertEvent, RemoveEvent, UpdateEvent } from 'typeorm'; import { RobotRoleEntity } from '../../domains'; export declare class RobotRoleSubscriber implements EntitySubscriberInterface<RobotRoleEntity> { listenTo(): Function | string; afterInsert(event: InsertEvent<RobotRoleEntity>): Promise<any>; afterUpdate(event: UpdateEvent<RobotRoleEntity>): Promise<any>; afterRemove(event: RemoveEvent<RobotRoleEntity>): Promise<any>; } //# sourceMappingURL=robot-role.d.ts.map