diff --git a/packages/vector-pools/src/vec-pool.ts b/packages/vector-pools/src/vec-pool.ts index 8465dd46e9..1a96a1a762 100644 --- a/packages/vector-pools/src/vec-pool.ts +++ b/packages/vector-pools/src/vec-pool.ts @@ -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; diff --git a/packages/vectors/src/compare.ts b/packages/vectors/src/compare.ts index 403591ae3e..2607b67d45 100644 --- a/packages/vectors/src/compare.ts +++ b/packages/vectors/src/compare.ts @@ -1,4 +1,4 @@ -import { Comparator } from "@thi.ng/api"; +import type { Comparator } from "@thi.ng/api"; import type { ReadonlyVec } from "./api"; /** diff --git a/packages/vectors/src/vec2.ts b/packages/vectors/src/vec2.ts index e24dfd0340..ea1c0bb12f 100644 --- a/packages/vectors/src/vec2.ts +++ b/packages/vectors/src/vec2.ts @@ -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, diff --git a/packages/vectors/src/vec3.ts b/packages/vectors/src/vec3.ts index 9a5b03821b..f6c18c7dc5 100644 --- a/packages/vectors/src/vec3.ts +++ b/packages/vectors/src/vec3.ts @@ -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, diff --git a/packages/vectors/src/vec4.ts b/packages/vectors/src/vec4.ts index 5ea6807b83..d34be303ba 100644 --- a/packages/vectors/src/vec4.ts +++ b/packages/vectors/src/vec4.ts @@ -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,