import { TFile } from '@metad/contracts'; import { ICommand } from '@nestjs/cqrs'; export declare class StorageFileCreateCommand implements ICommand { readonly file: TFile; static readonly type = "[StorageFile] Create Storage File"; constructor(file: TFile); }