Skip to content

Commit e6e2758

Browse files
committed
💥 mod.tsを廃止し、REST APIとUserScriptとで型を分ける
1 parent abbbef7 commit e6e2758

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

mod.ts

Lines changed: 0 additions & 6 deletions
This file was deleted.

rest.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/** @module types used at REST API */
2+
3+
export * from "./base.ts";
4+
export * from "./response.ts";
5+
export * from "./error.ts";

userscript.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/** @module types used at UserScript */
2+
3+
export * from "./base.ts";
14
export * from "./blocks.ts";
25
export * from "./nodes.ts";
36
export * from "./layout.ts";

0 commit comments

Comments
 (0)