You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

14 lines
319 B

'use strict';
import { Container } from '../container';
import { command, Command, Commands } from './common';
@command()
export class ToggleCodeLensCommand extends Command {
constructor() {
super(Commands.ToggleCodeLens);
}
execute() {
return Container.codeLens.toggleCodeLens();
}
}