9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
|
|
import {Injectable} from '../../../di'
|
||
|
|
import {MigrationEvent} from './MigrationEvent'
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Event fired after a migration is applied.
|
||
|
|
*/
|
||
|
|
@Injectable()
|
||
|
|
export class AppliedMigrationEvent extends MigrationEvent {}
|