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