2020-01-12 13:37:43 +02:00
|
|
|
import { IGlobalConfig, IGuildConfig, Knub } from "knub";
|
|
|
|
|
|
|
|
export interface IZeppelinGuildConfig extends IGuildConfig {
|
2020-01-12 13:44:31 +02:00
|
|
|
success_emoji?: string;
|
|
|
|
error_emoji?: string;
|
2020-01-12 13:37:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IZeppelinGlobalConfig extends IGlobalConfig {
|
|
|
|
url: string;
|
|
|
|
owners?: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export type TZeppelinKnub = Knub<IZeppelinGuildConfig, IZeppelinGlobalConfig>;
|