mirror of
https://github.com/lancedb/lancedb.git
synced 2025-12-26 14:49:57 +00:00
change variables to camel case
This commit is contained in:
@@ -712,9 +712,9 @@ export interface VectorIndex {
|
|||||||
export interface IndexStats {
|
export interface IndexStats {
|
||||||
numIndexedRows: number | null
|
numIndexedRows: number | null
|
||||||
numUnindexedRows: number | null
|
numUnindexedRows: number | null
|
||||||
index_type: string | null
|
indexType: string | null
|
||||||
distance_type: string | null
|
distanceType: string | null
|
||||||
completed_at: string | null
|
completedAt: string | null
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -522,9 +522,9 @@ export class RemoteTable<T = number[]> implements Table<T> {
|
|||||||
return {
|
return {
|
||||||
numIndexedRows: body?.num_indexed_rows,
|
numIndexedRows: body?.num_indexed_rows,
|
||||||
numUnindexedRows: body?.num_unindexed_rows,
|
numUnindexedRows: body?.num_unindexed_rows,
|
||||||
index_type: body?.index_type,
|
indexType: body?.index_type,
|
||||||
distance_type: body?.distance_type,
|
distanceType: body?.distance_type,
|
||||||
completed_at: body?.completed_at
|
completedAt: body?.completed_at
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user