Skip to content

Commit

Permalink
Fixing Float64Vector TS exports
Browse files Browse the repository at this point in the history
  • Loading branch information
atombrenner authored Jan 10, 2024
1 parent 6b5bc74 commit c898a7b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ build
.eslintcache
.DS_Store
TODO.md
.vscode
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ export {default as SuffixArray, GeneralizedSuffixArray} from './suffix-array';
export {default as SymSpell} from './symspell';
export {default as Trie} from './trie';
export {default as TrieMap} from './trie-map';
export {default as Vector, Uint8Vector, Uint8ClampedVector, Int8Vector, Uint16Vector, Int16Vector, Uint32Vector, Int32Vector, Float32Vector, Float64Array} from './vector';
export {default as Vector, Uint8Vector, Uint8ClampedVector, Int8Vector, Uint16Vector, Int16Vector, Uint32Vector, Int32Vector, Float32Vector, Float64Vector} from './vector';
export {default as VPTree} from './vp-tree';
4 changes: 2 additions & 2 deletions vector.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Mnemonist Vector Typings
* =========================
*/
import {IArrayLikeConstructor} from './utils/types';
import { IArrayLikeConstructor } from './utils/types';

type VectorOptions = {
initialLength?: number;
Expand Down Expand Up @@ -78,4 +78,4 @@ export class Uint16Vector extends TypedVector {}
export class Int32Vector extends TypedVector {}
export class Uint32Vector extends TypedVector {}
export class Float32Vector extends TypedVector {}
export class Float64Array extends TypedVector {}
export class Float64Vector extends TypedVector {}

0 comments on commit c898a7b

Please sign in to comment.