Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 

14 строки
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();
}
}