defs 준비

This commit is contained in:
2023-09-23 18:41:45 +00:00
parent e084835249
commit 4bc5407bf2
2 changed files with 9 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
//Type 정의
export type GeneralName = string & { zz_t?: "GeneralName" };
export type GeneralID = number & { zz_t?: "GeneralID" };
+5 -1
View File
@@ -1 +1,5 @@
export * from "./generalStats.js";
export * from "./generalStats.js";
export * as defs from "./defs.js";
// NOTE: game_logic은 client, server 모두에서 사용되는 라이브러리이다.
// DB에 접근한다면 DI여야하나?