ibm-streams
Version:
IBM Streams Support for Visual Studio Code
17 lines (14 loc) • 370 B
text/typescript
import { Commands, BaseCommand } from '.';
import StreamsBuild from '../build';
/**
* Command that lists the available toolkits
*/
export default class ListToolkitsCommand implements BaseCommand {
public commandName: string = Commands.ENVIRONMENT.TOOLKITS_LIST;
/**
* Execute the command
*/
public execute(): any {
StreamsBuild.listToolkits();
}
}