corde
Version:
A simple library for Discord bot tests
11 lines (10 loc) • 391 B
TypeScript
import { IRoleIdentifier, ITestReport } from "../../../types";
import { IExpectTestBaseParams } from "../../../types";
import { ExpectTest } from "../expectTest";
/**
* @internal
*/
export declare class ToSetRoleMentionable extends ExpectTest {
constructor(params: IExpectTestBaseParams);
action(mentionable: boolean, roleIdentifier: string | IRoleIdentifier): Promise<ITestReport>;
}