Skip to content

Commit 4c78feb

Browse files
committed
Make TerminalDimesions properties readonly
Fixes microsoft#53054
1 parent f082958 commit 4c78feb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/vscode.proposed.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,12 +351,12 @@ declare module 'vscode' {
351351
/**
352352
* The number of columns in the terminal.
353353
*/
354-
columns: number;
354+
readonly columns: number;
355355

356356
/**
357357
* The number of rows in the terminal.
358358
*/
359-
rows: number;
359+
readonly rows: number;
360360
}
361361

362362
/**

0 commit comments

Comments
 (0)