Skip to content

Commit ca5dadf

Browse files
committed
y
1 parent 23de195 commit ca5dadf

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

index.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
* SPDX-License-Identifier: GPL-3.0-or-later
44
*/
55

6-
export type { ModuleInstance } from "./module.ts";
7-
export type { Transformer } from "./transform.ts";
8-
96
// @deno-types="./mixins.ts"
107
import mixin, { applyTransforms } from "./mixins.js";
118
// @deno-types="./module.ts"

mixins.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
* SPDX-License-Identifier: GPL-3.0-or-later
44
*/
55

6-
import type { Transformer } from "./transform.ts";
7-
86
// @deno-types="./protocol.ts"
97
import { handleProtocol } from "./protocol.js";
108
// @deno-types="./transform.ts"
11-
import { SourceFile } from "./transform.js";
9+
import { SourceFile, type Transformer } from "./transform.js";
1210
// @deno-types="./util.ts"
1311
import { matchLast } from "./util.js";
1412
// @deno-types="./module.ts"

module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ import { deepMerge } from "./std/collections.js";
1515
import { Transition } from "./util/transition.js";
1616
// @deno-types="./util/fetch.ts"
1717
import { fetchJson } from "./util/fetch.js";
18-
1918
// @deno-types="./util/proxy.ts"
2019
import { proxy } from "./util/proxy.js";
20+
2121
// @deno-types="./protocol.ts"
2222
import { ModuleManager } from "./protocol.js";
2323
// @deno-types="./static.ts"

0 commit comments

Comments
 (0)