File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ export function halfvecFromSql(value: any): any;
66export function halfvecToSql ( value : any ) : any ;
77export function sparsevecFromSql ( value : any ) : SparseVector ;
88export function sparsevecToSql ( value : any ) : any ;
9- export function anyToSql ( value : any ) : any ;
109export function sqlType ( dimensions : any ) : any ;
1110export function vectorType ( dimensions : any ) : any ;
1211export function halfvecType ( dimensions : any ) : any ;
Original file line number Diff line number Diff line change 11export class SparseVector {
2- static fromSql ( value : any ) : SparseVector ;
3- static fromDense ( value : any ) : SparseVector ;
4- static fromMap ( map : any , dimensions : any ) : SparseVector ;
5- constructor ( dimensions : any , indices : any , values : any ) ;
6- dimensions : any ;
7- indices : any ;
8- values : any ;
9- toString ( ) : string ;
10- toSql ( ) : string ;
2+ constructor ( value : any , dimensions : any ) ;
113 toPostgres ( ) : string ;
4+ toString ( ) : string ;
125 toArray ( ) : any [ ] ;
6+ dimensions : any ;
7+ indices : any [ ] ;
8+ values : any [ ] ;
9+ #private;
1310}
You can’t perform that action at this time.
0 commit comments