rojects/src/commands/file-tree-commands/AddFile.ts

17 lines
320 B
TypeScript
Raw Normal View History

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