corde
Version:
A simple library for Discord bot tests
18 lines (17 loc) • 559 B
TypeScript
import { IConfigOptions } from "../types";
export declare class ConfigAPI implements Readonly<Required<IConfigOptions>> {
private _internalConfigs;
constructor(_internalConfigs: IConfigOptions);
get cordeBotToken(): string;
get botTestId(): string;
get channelId(): string;
get guildId(): string;
get timeout(): number;
get botPrefix(): string;
get testMatches(): string[];
get modulePathIgnorePatterns(): string[];
get project(): string;
get exitOnFileReadingError(): boolean;
get extensions(): string[];
get rootDir(): string;
}