This commit is contained in:
Rob Lourens 2021-04-26 21:01:35 -07:00
parent 107351bc20
commit d89a35b91f
2 changed files with 12 additions and 13 deletions

View file

@ -1869,14 +1869,13 @@ declare module 'vscode' {
Right = 2
}
// todo@API remove readonlyness.
export class NotebookCellStatusBarItem {
readonly text: string;
readonly alignment: NotebookCellStatusBarAlignment;
readonly command?: string | Command;
readonly tooltip?: string;
readonly priority?: number;
readonly accessibilityInformation?: AccessibilityInformation;
text: string;
alignment: NotebookCellStatusBarAlignment;
command?: string | Command;
tooltip?: string;
priority?: number;
accessibilityInformation?: AccessibilityInformation;
constructor(text: string, alignment: NotebookCellStatusBarAlignment, command?: string | Command, tooltip?: string, priority?: number, accessibilityInformation?: AccessibilityInformation);
}

View file

@ -3155,12 +3155,12 @@ export enum NotebookEditorRevealType {
export class NotebookCellStatusBarItem {
constructor(
readonly text: string,
readonly alignment: NotebookCellStatusBarAlignment,
readonly command?: string | vscode.Command,
readonly tooltip?: string,
readonly priority?: number,
readonly accessibilityInformation?: vscode.AccessibilityInformation) { }
public text: string,
public alignment: NotebookCellStatusBarAlignment,
public command?: string | vscode.Command,
public tooltip?: string,
public priority?: number,
public accessibilityInformation?: vscode.AccessibilityInformation) { }
}