mirror of
https://github.com/xHyroM/bun-discord-bot.git
synced 2024-11-10 01:08:07 +01:00
29 lines
566 B
TypeScript
29 lines
566 B
TypeScript
declare module "bun" {
|
|
interface Env {
|
|
DISCORD_BOT_TOKEN: string;
|
|
BUN_ONLY_CHANNEL_ID: string;
|
|
MESSAGE_PREFIX: string;
|
|
WOLFRAM_ALPHA: string;
|
|
}
|
|
}
|
|
|
|
declare module "@wolfram-alpha/wolfram-alpha-api" {
|
|
export default function WolframAlphaAPI(appId: string): WolframAPI;
|
|
|
|
interface WolframAPI {
|
|
getFull(input: string): Promise<WolframResponse>;
|
|
}
|
|
|
|
interface WolframResponse {
|
|
pods: WolframPod[];
|
|
}
|
|
|
|
interface WolframPod {
|
|
id: string;
|
|
subpods: WolframSubpod[];
|
|
}
|
|
|
|
interface WolframSubpod {
|
|
plaintext: string;
|
|
}
|
|
}
|