import BotchedError from './BotchedError'; export interface MaybeBotchedError { isBotched?: boolean; } /** * Check if error is botched error * * @param {Error} err * @returns {boolean} */ declare function isBotched(err: Error & MaybeBotchedError): err is BotchedError; export default isBotched;