ams-ssk
Version:
NestJS AMS Library for file management
17 lines (16 loc) • 439 B
TypeScript
export interface tgBotConfig {
token: string;
maxConcurrentOperations: number;
}
export interface tgChannelConfig {
channelId: string;
description?: string;
botTokens: string[];
}
export interface tgConfig {
bots: tgBotConfig[];
channels: tgChannelConfig[];
adminChatId?: string;
}
declare const _default: (() => tgConfig) & import("@nestjs/config").ConfigFactoryKeyHost<tgConfig>;
export default _default;