UNPKG

ibm-streams

Version:
17 lines (14 loc) 410 B
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(); } }