3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-16 06:11:49 +00:00
zeppelin/backend/src/types.ts

14 lines
342 B
TypeScript
Raw Normal View History

2020-06-30 17:48:18 +03:00
import { BaseConfig, Knub } from "knub";
2020-06-30 17:48:18 +03:00
export interface IZeppelinGuildConfig extends BaseConfig<any> {
success_emoji?: string;
error_emoji?: string;
}
2020-06-30 17:48:18 +03:00
export interface IZeppelinGlobalConfig extends BaseConfig<any> {
url: string;
owners?: string[];
}
export type TZeppelinKnub = Knub<IZeppelinGuildConfig, IZeppelinGlobalConfig>;