@averagehelper/corde
Version:
A simple library for Discord bot tests. (Republished fork to demonstrate a bugfix)
13 lines (12 loc) • 334 B
TypeScript
import ConfigOptions from "../types";
declare class Reader {
/**
* Read config file(*.json) from root of project
* and validates it
* @throws
*/
loadConfig(): ConfigOptions;
getTestsFromFiles(files: string[]): Promise<import("../types").Group[]>;
}
declare const reader: Reader;
export default reader;