import { Command } from "../Command";
import { CommandContext } from "../CommandContext";
export class AddFileCommand extends Command
{
constructor(){ super( "", "" ); }
async execute( context: CommandContext ): Promise<void>
}