/// import { ICommand } from '@nestjs/cqrs'; import { Readable } from 'stream'; export declare class DeployWebappCommand implements ICommand { readonly stream: Readable; readonly appId: string; static readonly type = "[StorageFile] Deploy webapp"; constructor(stream: Readable, appId: string); }