@averagehelper/corde
Version:
A simple library for Discord bot tests. (Republished fork to demonstrate a bugfix)
16 lines (15 loc) • 403 B
TypeScript
import { MatchWithNot } from "./matcher";
/**
* Receives wich command will be tested.
*
* @param commandName Command name.
*
* @description Do not inform the command prefix if
* it's already informed in **configs**
*
* @returns The **Compare** object, where will handle
* the type of response is expected.
*
* @since 1.0
*/
export declare function expect(commandName: string): MatchWithNot;