Skip to content

Commit c898a7b

Browse files
authored
Fixing Float64Vector TS exports
1 parent 6b5bc74 commit c898a7b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ build
55
.eslintcache
66
.DS_Store
77
TODO.md
8+
.vscode

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ export {default as SuffixArray, GeneralizedSuffixArray} from './suffix-array';
4444
export {default as SymSpell} from './symspell';
4545
export {default as Trie} from './trie';
4646
export {default as TrieMap} from './trie-map';
47-
export {default as Vector, Uint8Vector, Uint8ClampedVector, Int8Vector, Uint16Vector, Int16Vector, Uint32Vector, Int32Vector, Float32Vector, Float64Array} from './vector';
47+
export {default as Vector, Uint8Vector, Uint8ClampedVector, Int8Vector, Uint16Vector, Int16Vector, Uint32Vector, Int32Vector, Float32Vector, Float64Vector} from './vector';
4848
export {default as VPTree} from './vp-tree';

vector.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Mnemonist Vector Typings
33
* =========================
44
*/
5-
import {IArrayLikeConstructor} from './utils/types';
5+
import { IArrayLikeConstructor } from './utils/types';
66

77
type VectorOptions = {
88
initialLength?: number;
@@ -78,4 +78,4 @@ export class Uint16Vector extends TypedVector {}
7878
export class Int32Vector extends TypedVector {}
7979
export class Uint32Vector extends TypedVector {}
8080
export class Float32Vector extends TypedVector {}
81-
export class Float64Array extends TypedVector {}
81+
export class Float64Vector extends TypedVector {}

0 commit comments

Comments
 (0)