Skip to content

Commit

Permalink
fix typescript export of Float64Vector
Browse files Browse the repository at this point in the history
  • Loading branch information
atombrenner committed Jan 10, 2024
1 parent 6b5bc74 commit 7bb0f0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 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
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 7bb0f0a

Please sign in to comment.