14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
import type { Context } from "./context"
|
|
import type { LarkServer } from "./larkServer"
|
|
import type { MsgProxy } from "./msgProxy"
|
|
|
|
export { Context, LarkServer, MsgProxy }
|
|
|
|
declare module "bun" {
|
|
interface Env {
|
|
PB_USER: string
|
|
PB_PASS: string
|
|
PB_URL: string
|
|
}
|
|
}
|