import { ICommand } from '@nestjs/cqrs'; import { IUpdateStorageFileInput } from '@metad/contracts'; export declare class StorageFileUpdateCommand implements ICommand { readonly input: IUpdateStorageFileInput; static readonly type = "[StorageFile] Update Storage File"; constructor(input: IUpdateStorageFileInput); }