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

12 lines
247 B
TypeScript
Raw Normal View History

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