UNPKG

@proton/ccxt

Version:

A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges

17 lines (12 loc) 332 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); var base = require('./base.js'); /** * AbortError interface for cancelled requests */ class AbortError extends base.FetchBaseError { constructor(message, type = 'aborted') { super(message, type); } } exports.AbortError = AbortError;