mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-11 21:17:19 +00:00
13 lines
354 B
TypeScript
13 lines
354 B
TypeScript
import { IGlobalConfig, IGuildConfig, Knub } from "knub";
|
|
|
|
export interface IZeppelinGuildConfig extends IGuildConfig {
|
|
success_emoji?: string;
|
|
error_emoji?: string;
|
|
}
|
|
|
|
export interface IZeppelinGlobalConfig extends IGlobalConfig {
|
|
url: string;
|
|
owners?: string[];
|
|
}
|
|
|
|
export type TZeppelinKnub = Knub<IZeppelinGuildConfig, IZeppelinGlobalConfig>;
|