mirror of
https://github.com/coder/code-server.git
synced 2026-05-15 16:57:26 +02:00
chore(vscode): update to 1.56.0
This commit is contained in:
@@ -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 [];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user