Skip to content

Commit

Permalink
refactor(vectors): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 6, 2020
1 parent 22cf5c6 commit d9699be
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/vector-pools/src/vec-pool.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { GLType, Type, TypedArray } from "@thi.ng/api";
import { isTypedArray } from "@thi.ng/checks";
import { MemPool, MemPoolOpts, MemPoolStats } from "@thi.ng/malloc";
import { asNativeType } from "./convert";
import { wrap } from "./wrap";
import type { StridedVec } from "@thi.ng/vectors";
import type { IVecPool } from "./api";
import { asNativeType } from "./convert";
import { wrap } from "./wrap";

export class VecPool implements IVecPool {
pool: MemPool;
Expand Down
2 changes: 1 addition & 1 deletion packages/vectors/src/compare.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Comparator } from "@thi.ng/api";
import type { Comparator } from "@thi.ng/api";
import type { ReadonlyVec } from "./api";

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/vectors/src/vec2.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IHash } from "@thi.ng/api";
import type { IHash } from "@thi.ng/api";
import { EPS } from "@thi.ng/math";
import {
IVector,
Expand Down
2 changes: 1 addition & 1 deletion packages/vectors/src/vec3.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IHash } from "@thi.ng/api";
import type { IHash } from "@thi.ng/api";
import { EPS } from "@thi.ng/math";
import {
IVector,
Expand Down
2 changes: 1 addition & 1 deletion packages/vectors/src/vec4.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { IHash } from "@thi.ng/api";
import type { IHash } from "@thi.ng/api";
import { EPS } from "@thi.ng/math";
import {
IVector,
Expand Down

0 comments on commit d9699be

Please sign in to comment.