koishi-plugin-kbot
Version:
A muti-function qq bot for koishi
15 lines (14 loc) • 414 B
TypeScript
import { type Context, Logger, Schema } from 'koishi';
export interface IConfig {
language?: string;
voice?: string;
style?: string;
styledegree?: string;
role?: string;
silence?: number;
rate?: number;
pitch?: number;
}
export declare const Config: Schema<IConfig>;
export declare const logger: Logger;
export declare function apply(ctx: Context, _config: IConfig): Promise<void>;