All checks were successful
continuous-integration/drone/push Build is passing
9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
import {Injectable} from '../../../di'
|
|
import {MigrationEvent} from './MigrationEvent'
|
|
|
|
/**
|
|
* Event fired before a migration is applied.
|
|
*/
|
|
@Injectable()
|
|
export class ApplyingMigrationEvent extends MigrationEvent {}
|