import { Command } from "../Command"; import { CommandContext } from "../CommandContext"; export class AddFileCommand extends Command { constructor(){ super( "", "" ); } async _doAction( context: CommandContext ): Promise { } async _undoAction( context: CommandContext ): Promise { } }