3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-11 21:17:19 +00:00
zeppelin/backend/src/types.ts

13 lines
354 B
TypeScript

import { IGlobalConfig, IGuildConfig, Knub } from "knub";
export interface IZeppelinGuildConfig extends IGuildConfig {
success_emoji?: string;
error_emoji?: string;
}
export interface IZeppelinGlobalConfig extends IGlobalConfig {
url: string;
owners?: string[];
}
export type TZeppelinKnub = Knub<IZeppelinGuildConfig, IZeppelinGlobalConfig>;