3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-06-08 00:05:01 +00:00

Merge branch 'master' of github.com:ZeppelinBot/Zeppelin into feat/application-commands

This commit is contained in:
Lily Bergonzat 2024-04-15 12:39:01 +02:00
commit 0be54912c4
164 changed files with 22402 additions and 25686 deletions

View file

@ -1,5 +1,5 @@
import { Knub } from "knub";
import z from "zod";
import z, { ZodTypeAny } from "zod";
import { zSnowflake } from "./utils";
export const zZeppelinGuildConfig = z.strictObject({
@ -17,11 +17,13 @@ export type TZeppelinKnub = Knub;
export type TMarkdown = string;
export interface ZeppelinPluginInfo {
showInDocs: boolean;
prettyName: string;
description?: TMarkdown;
usageGuide?: TMarkdown;
configurationGuide?: TMarkdown;
legacy?: boolean;
configSchema?: ZodTypeAny;
}
export interface CommandInfo {