Files
lib/src/orm/model/events/ModelRetrievedEvent.ts
garrettmills 6d1cf18680
Some checks failed
continuous-integration/drone/push Build is failing
Refactor event bus and queue system; detect cycles in DI realization and make
2022-01-26 19:37:54 -06:00

10 lines
279 B
TypeScript

import {Model} from '../Model'
import {ModelEvent} from './ModelEvent'
/**
* Event fired right after a model's data is loaded from the source.
*/
export class ModelRetrievedEvent<T extends Model<T>> extends ModelEvent<T> {
eventName = '@extollo/lib.ModelRetrievedEvent'
}