djs-systems
Version:
The simplest way to build complex Discord bots.
15 lines (14 loc) • 384 B
TypeScript
export declare type errOptions = {
function?: string;
title?: string;
tip?: string;
};
export declare class SimplyError extends Error {
/**
* Emit errors and provide sufficient details to help users debug easily
* @param {String} function
* @param {String} title
* @param {String} tip
*/
constructor(options?: errOptions);
}