djs-systems
Version:
The simplest way to build complex Discord bots.
17 lines (16 loc) • 527 B
TypeScript
import { Message } from 'discord.js';
/**
* **Documentation Url** of the options: https://simplyd.js.org/docs/deprecated/nqn#nqnoptions
*/
export declare type nqnOptions = {
strict?: boolean;
};
/**
* @deprecated Removed from the package
*
* NQN bot feature. But you have the power to do it.
* @param message
* @link `Documentation:` https://simplyd.js.org/docs/deprecated/nqn
* @example simplydjs.nqn(message)
*/
export declare function nqn(message: Message, options?: nqnOptions): Promise<void>;