17 lines
320 B
TypeScript
17 lines
320 B
TypeScript
|
|
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>
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|