@ayanaware/bentocord
Version:
Bentocord is a Bento plugin designed to rapidly build fully functional Discord Bots.
8 lines (7 loc) • 413 B
TypeScript
import { AnyCommandContext } from '../CommandContext';
import { SuppressorType } from '../constants/SuppressorType';
import { Suppressor, SuppressorOption } from '../interfaces/Suppressor';
export declare class RoleSuppressor implements Suppressor {
suppressor: SuppressorType;
suppress(ctx: AnyCommandContext, option: SuppressorOption, roleIds?: Array<string>, all?: boolean): Promise<string | false>;
}