UNPKG

create-hest-app

Version:

Create HestJS-powered applications with one command

12 lines (10 loc) 270 B
import { Command } from '@hestjs/cqrs'; import { UpdateUserData, User } from '../entities'; export class UpdateUserCommand extends Command<User> { constructor( public readonly userId: string, public readonly userData: UpdateUserData, ) { super(); } }