ibm-streams
Version:
IBM Streams Support for Visual Studio Code
17 lines (14 loc) • 410 B
text/typescript
import { Commands, BaseCommand } from '.';
import StreamsBuild from '../build';
/**
* Command that allows a user to refresh the toolkits on the SPL LSP server
*/
export default class RefreshToolkitsCommand implements BaseCommand {
public commandName: string = Commands.ENVIRONMENT.TOOLKITS_REFRESH;
/**
* Execute the command
*/
public execute(): any {
StreamsBuild.refreshToolkits();
}
}