fix: send multi forward msg

This commit is contained in:
linyuchen
2024-02-19 21:48:50 +08:00
parent 9b8b9a203c
commit 1938eef746
16 changed files with 500 additions and 203 deletions

9
src/global.d.ts vendored
View File

@@ -1,15 +1,10 @@
import { Config } from "./common/types";
import {LLOneBot} from "./preload";
declare var llonebot: {
log(data: any): void,
setConfig(config: Config):void;
getConfig():Promise<Config>;
};
declare global {
interface Window {
llonebot: typeof llonebot;
llonebot: LLOneBot;
LiteLoader: any;
}
}