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