This commit is contained in:
Miikka 2020-06-30 17:48:18 +03:00
parent a0fa21f0f5
commit 7e3f9ebd11
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[];
}