mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
15 lines
271 B
TypeScript
15 lines
271 B
TypeScript
import {Config} from "./common/types";
|
|
|
|
|
|
declare var llonebot: {
|
|
log(data: any): void,
|
|
setConfig(config: Config):void;
|
|
getConfig():Promise<Config>;
|
|
};
|
|
|
|
declare global {
|
|
interface Window {
|
|
llonebot: typeof llonebot;
|
|
LiteLoader: any;
|
|
}
|
|
} |