import { ICommand } from '@nestjs/cqrs'; import { IEmployeeUpdateInput } from '@metad/contracts'; export declare class EmployeeUpdateCommand implements ICommand { readonly input: IEmployeeUpdateInput; static readonly type = "[Employee] Update"; constructor(input: IEmployeeUpdateInput); }