Skip to content

Commit

Permalink
refactor(shader-ast-glsl): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 24, 2020
1 parent ff6eb70 commit 4fbb2b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/shader-ast-glsl/src/api.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Fn } from "@thi.ng/api";
import {
import type { Fn } from "@thi.ng/api";
import type {
FloatSym,
Sym,
Term,
Expand Down
2 changes: 1 addition & 1 deletion packages/shader-ast-glsl/src/target.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { Fn } from "@thi.ng/api";
import { isBoolean, isNumber } from "@thi.ng/checks";
import { unsupported } from "@thi.ng/errors";
import {
Expand All @@ -14,6 +13,7 @@ import {
Type
} from "@thi.ng/shader-ast";
import { GLSLOpts, GLSLTarget, GLSLVersion } from "./api";
import type { Fn } from "@thi.ng/api";

const RE_SEMI = /[};]$/;

Expand Down

0 comments on commit 4fbb2b7

Please sign in to comment.