Files
bot/core/src/features/text-based-feature/text-based-feature.schema.ts

10 lines
230 B
TypeScript

export type TextBasedFeatureHandleMessageSend = (
message: string,
channelId: string,
) => void | Promise<void>;
export type TextBasedFeatureInput = {
channelId: string;
messagesService: TextBasedFeatureHandleMessageSend;
};