• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import commands = require('./commands');
2
3export class RM {
4
5    public getName() {
6        return 'rm';
7    }
8
9    public getDescription() {
10        return "\t\t\tDelete file";
11    }
12
13    private run(configuration: commands.IConfiguration) {
14        var absoluteWorkspacePath = configuration.workspace.toAbsolutePath(configuration.server);
15    }
16}