corde
Version:
A simple library for Discord bot tests
11 lines (10 loc) • 390 B
TypeScript
import { IMessageIdentifier, ITestReport } from "../../../types";
import { IExpectTestBaseParams } from "../../../types";
import { MessageExpectTest } from "./messageExpectTest";
/**
* @internal
*/
export declare class ToPinMessage extends MessageExpectTest {
constructor(params: IExpectTestBaseParams);
action(messageIdentifier: IMessageIdentifier | string): Promise<ITestReport>;
}