Sha256: d78f06a8ebd5cab158eccdf48e5bc772113a7cf9eb3fd1adaff400553ce64a85
Contents?: true
Size: 655 Bytes
Versions: 33
Compression:
Stored size: 655 Bytes
Contents
// Type definitions for cacheable-request 6.0 // Project: https://github.com/lukechilds/cacheable-request#readme // Definitions by: BendingBender <https://github.com/BendingBender> // Paul Melnikow <https://github.com/paulmelnikow> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 export class RequestError extends Error { constructor(error) { super(error.message); Object.assign(this, error); } } export class CacheError extends Error { constructor(error) { super(error.message); Object.assign(this, error); } } //# sourceMappingURL=types.js.map
Version data entries
33 entries across 33 versions & 1 rubygems