Make absent fields consistently 'never'

This commit is contained in:
Jason Reed 2020-03-11 10:39:47 -04:00
Родитель d21cd4447c
Коммит 55d3db05dc
1 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -59,13 +59,13 @@ export interface OffsetLengthLocation {
}
export interface WholeFileLocation {
uri: string,
startLine: undefined,
startColumn: undefined,
endLine: undefined,
endColumn: undefined,
charOffset: undefined,
charLength: undefined,
uri: string,
startLine: never,
startColumn: never,
endLine: never,
endColumn: never,
charOffset: never,
charLength: never,
}
export type UrlValue = LineColumnLocation | OffsetLengthLocation | WholeFileLocation | string;
@ -74,6 +74,6 @@ export type UrlValue = LineColumnLocation | OffsetLengthLocation | WholeFileLoca
export type ColumnValue = EntityValue | number | string | boolean;
export interface DecodedBqrsChunk {
tuples: ColumnValue[][],
next?: number
tuples: ColumnValue[][],
next?: number
}