@types/koa-json-error
TypeScript icon, indicating that this package has built-in type declarations

3.1.6 • Public • Published

Installation

npm install --save @types/koa-json-error

Summary

This package contains type definitions for koa-json-error (https://github.com/koajs/json-error).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/koa-json-error.

index.d.ts

import * as Koa from "koa";

type JSONError = Error & { status: number };

interface JSONErrorOptions {
    /**
     * Perform some task before calling `options.format`. Must be a function with the original err as its only argument.
     */
    preFormat?(err: JSONError): any;

    /**
     * Runs inmediatly after `options.preFormat`. It receives two arguments: the original `err` and the output of     `options.preFormat`. It should `return` a newly formatted error.
     */
    format?(err: JSONError, obj: any): any;

    /**
     * Runs inmediatly after `options.format`. It receives two arguments: the original `err` and the output of   `options.format`.   It should `return` a newly formatted error.
     */
    postFormat?(err: JSONError, obj: any): any;
}

/**
 * Error handler for pure Koa 2.0.0+ JSON apps
 */
declare function jsonError(options?: JSONErrorOptions): Koa.Middleware;

declare namespace jsonError {}
export = jsonError;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:38 GMT
  • Dependencies: @types/koa

Credits

These definitions were written by Mudkip.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/koa-json-error

Weekly Downloads

1,791

Version

3.1.6

License

MIT

Unpacked Size

4.53 kB

Total Files

5

Last publish

Collaborators

  • types