mirror of
https://github.com/syuilo/ai.git
synced 2024-11-09 23:48:01 +00:00
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
|
import 藍 from '.';
|
||
|
import MessageLike from './message-like';
|
||
|
|
||
|
export default interface IModule {
|
||
|
install?: (ai: 藍) => void;
|
||
|
onMention?: (msg: MessageLike) => boolean;
|
||
|
}
|