fix linting error

This commit is contained in:
Simon Lamon
2022-01-11 11:58:53 +00:00
parent 8bdeb14bc6
commit f03d0858cc
+1 -1
View File
@@ -15,7 +15,7 @@ import { ITerminalOptions } from 'common/Types';
/**
* The set of options that only have an effect when set in the Terminal constructor.
*/
const CONSTRUCTOR_ONLY_OPTIONS = ['cols', 'rows'];
const CONSTRUCTOR_ONLY_OPTIONS = ['cols', 'rows'];
export class Terminal implements ITerminalApi {
private _core: TerminalCore;