UNPKG

create-hest-app

Version:

Create HestJS-powered applications with one command

9 lines (6 loc) 233 B
import { Query, IQueryResult } from '@hestjs/cqrs'; import { User } from '../entities'; export interface GetAllUsersResult extends IQueryResult { users: User[]; } export class GetAllUsersQuery extends Query<GetAllUsersResult> {}