Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@types/statuses) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Installation
npm install --save @types/statuses
Summary
This package contains type definitions for statuses (https://github.com/jshttp/statuses).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/statuses.
index.d.ts
// Type definitions for statuses 2.0
// Project: https://github.com/jshttp/statuses
// Definitions by: Tanguy Krotoff <https://github.com/tkrotoff>
// BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// Minimum TypeScript Version: 4.7
type NumericAscii = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "0";
type NonNumericAscii<S> = S extends `${NumericAscii}` ? never : any;
type IsNumericString<S extends string> = S extends `${number}` ? any : never;
type IsNonNumericString<S extends string> = S extends `${NonNumericAscii<S>}${infer _}` ? any : never;
export = status;
declare const status: status;
interface status {
(code: number): string;
<S extends string>(code: S): status.Result<S>;
codes: number[];
code: { [msg: string]: number | undefined };
empty: { [code: number]: boolean | undefined };
message: { [code: number]: string | undefined };
redirect: { [code: number]: boolean | undefined };
retry: { [code: number]: boolean | undefined };
}
declare namespace status {
type Result<S extends string> = S extends IsNumericString<S> ? string
: S extends IsNonNumericString<S> ? number
: string | number;
}
Additional Details
- Last updated: Mon, 25 Sep 2023 13:39:06 GMT
- Dependencies: none
- Global values: none
Credits
These definitions were written by Tanguy Krotoff, and BendingBender.