UNPKG

create-hest-app

Version:

Create HestJS-powered applications with one command

9 lines (7 loc) 184 B
import { Event } from '@hestjs/cqrs'; import { User } from '../entities'; export class UserCreatedEvent extends Event { constructor(public readonly user: User) { super(); } }