# 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](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/statuses/index.d.ts) ````ts type NumericAscii = "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "0"; type NonNumericAscii = S extends `${NumericAscii}` ? never : any; type IsNumericString = S extends `${number}` ? any : never; type IsNonNumericString = S extends `${NonNumericAscii}${infer _}` ? any : never; export = status; declare const status: status; interface status { (code: number): string; (code: S): status.Result; 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 IsNumericString ? string : S extends IsNonNumericString ? number : string | number; } ```` ### Additional Details * Last updated: Tue, 07 Nov 2023 20:08:00 GMT * Dependencies: none # Credits These definitions were written by [Tanguy Krotoff](https://github.com/tkrotoff), and [BendingBender](https://github.com/BendingBender).