UNPKG

@ministryofjustice/hmpps-digital-prison-reporting-frontend

Version:

The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.

16 lines (12 loc) 296 B
'use strict'; 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; //# sourceMappingURL=abort-error.js.map