chore(vscode): update to 1.56.0

This commit is contained in:
Akash Satheesan
2021-04-30 20:25:17 +05:30
1749 changed files with 88014 additions and 43316 deletions

View File

@@ -118,7 +118,7 @@ export abstract class Composite extends Component implements IComposite {
this.parent = parent;
}
updateStyles(): void {
override updateStyles(): void {
super.updateStyles();
}
@@ -161,7 +161,7 @@ export abstract class Composite extends Component implements IComposite {
/**
* Returns an array of actions to show in the action bar of the composite.
*/
getActions(): ReadonlyArray<IAction> {
getActions(): readonly IAction[] {
return [];
}
@@ -169,14 +169,14 @@ export abstract class Composite extends Component implements IComposite {
* Returns an array of actions to show in the action bar of the composite
* in a less prominent way then action from getActions.
*/
getSecondaryActions(): ReadonlyArray<IAction> {
getSecondaryActions(): readonly IAction[] {
return [];
}
/**
* Returns an array of actions to show in the context menu of the composite
*/
getContextMenuActions(): ReadonlyArray<IAction> {
getContextMenuActions(): readonly IAction[] {
return [];
}