egg_server/types/index.ts
zhaoyingbo b7437f47e4
All checks were successful
Egg CI/CD / build-image (push) Successful in 49s
Egg CI/CD / deploy (push) Successful in 23s
feat: 优化请求处理 & 拆分Type
2024-06-08 09:15:14 +00:00

8 lines
279 B
TypeScript

import type { DB } from "./db";
import type { LarkAction } from "./larkAction";
import type { LarkEvent } from "./larkEvent";
import type { LarkServer } from "./larkServer";
import type { MsgProxy } from "./msgProxy";
export { DB, LarkAction, LarkEvent, LarkServer, MsgProxy };