egg_server/types/index.ts
zhaoyingbo 09e352a9c1
All checks were successful
Egg Server MIflow / build-image (push) Successful in 1m5s
feat: 抽象网络请求类 & 内容转为ctx向内传递
2024-08-16 09:12:11 +00:00

9 lines
323 B
TypeScript

import type { Context } from "./context"
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 { Context, DB, LarkAction, LarkEvent, LarkServer, MsgProxy }