Skip to content

Commit

Permalink
refactor(soa): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 6, 2020
1 parent 18e86e9 commit 8c888c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/soa/src/aos.ts
@@ -1,8 +1,8 @@
import { SIZEOF } from "@thi.ng/api";
import { align, Pow2 } from "@thi.ng/binary";
import type { AOSSpecs, SOASpecs } from "./api";
import { SOA } from "./soa";
import { prepareSpec } from "./utils";
import type { AOSSpecs, SOASpecs } from "./api";

/**
* Constructs SOA instance from given attrib specs and optional
Expand Down
2 changes: 1 addition & 1 deletion packages/soa/src/soa.ts
Expand Up @@ -6,9 +6,9 @@ import {
typedArray,
TYPEDARRAY_CTORS,
} from "@thi.ng/api";
import { prepareSpec } from "./utils";
import type { ReadonlyVec, Vec } from "@thi.ng/vectors";
import type { SOAAttribSpec, SOASpecs, SOATuple } from "./api";
import { prepareSpec } from "./utils";

export class SOA<K extends string> implements ILength {
length: number;
Expand Down

0 comments on commit 8c888c0

Please sign in to comment.