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
354 B
TypeScript
Raw Normal View History

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>;