koishi-plugin-onebot-info-image 0.0.1-alpha.2 → 0.2.0-alpha.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts ADDED
@@ -0,0 +1,27 @@
1
+ import { Context, Schema } from 'koishi';
2
+ import { type ImageStyle, type ImageType, type OneBotImplName } from './type';
3
+ export declare const name = "onebot-info-image";
4
+ export declare const inject: {
5
+ required: string[];
6
+ };
7
+ export declare const usage: string;
8
+ export interface Config {
9
+ onebotImplName: OneBotImplName;
10
+ enableUserInfoCommand: boolean;
11
+ userinfoCommandName: string;
12
+ enableGroupAdminListCommand: boolean;
13
+ groupAdminListCommandName: string;
14
+ sendText: boolean;
15
+ enableQuoteWithText: boolean;
16
+ sendImage: boolean;
17
+ enableQuoteWithImage: boolean;
18
+ imageStyle: ImageStyle;
19
+ enableDarkMode: boolean;
20
+ imageType: ImageType;
21
+ screenshotQuality: number;
22
+ sendForward: boolean;
23
+ verboseSessionOutput: boolean;
24
+ verboseConsoleOutput: boolean;
25
+ }
26
+ export declare const Config: Schema<Config>;
27
+ export declare function apply(ctx: Context, config: Config): void;