declare module "koishi" { interface Events { notice(session: Session): void; } interface Session { targetId: string; } } export {};