mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 22:01:50 +00:00
13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
import { BaseConfig, Knub } from "knub";
|
|
|
|
export interface IZeppelinGuildConfig extends BaseConfig<any> {
|
|
success_emoji?: string;
|
|
error_emoji?: string;
|
|
}
|
|
|
|
export interface IZeppelinGlobalConfig extends BaseConfig<any> {
|
|
url: string;
|
|
owners?: string[];
|
|
}
|
|
|
|
export type TZeppelinKnub = Knub<IZeppelinGuildConfig, IZeppelinGlobalConfig>;
|