import { ICommand } from '@nestjs/cqrs'; import { FindOneOptions } from 'typeorm'; export declare class EmployeeGetCommand implements ICommand { readonly input: FindOneOptions; static readonly type = "[Employee] Get"; constructor(input: FindOneOptions); }