3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-20 00:05:04 +00:00
This commit is contained in:
Miikka 2020-06-30 17:48:18 +03:00
parent c46f63bf0b
commit b4757f3b52
40 changed files with 118 additions and 119 deletions

View file

@ -1,11 +1,11 @@
import { IGlobalConfig, IGuildConfig, Knub } from "knub";
import { BaseConfig, Knub } from "knub";
export interface IZeppelinGuildConfig extends IGuildConfig {
export interface IZeppelinGuildConfig extends BaseConfig<any> {
success_emoji?: string;
error_emoji?: string;
}
export interface IZeppelinGlobalConfig extends IGlobalConfig {
export interface IZeppelinGlobalConfig extends BaseConfig<any> {
url: string;
owners?: string[];
}