Update sqlExtHostTypes.ts (#7801)

Fix small mistake
This commit is contained in:
Amir Omidi
2019-10-18 13:26:53 -07:00
committed by GitHub
parent a791aff0a2
commit 09d78544cf

View File

@@ -549,7 +549,7 @@ export class CellRange {
}
constructor(start: number, end: number) {
if (typeof (start) !== 'number' || typeof (start) !== 'number' || start < 0 || end < 0) {
if (typeof (start) !== 'number' || typeof (end) !== 'number' || start < 0 || end < 0) {
throw new Error('Invalid arguments');
}