JSPM

  • Created
  • Published
  • Downloads 6030746
  • Score
    100M100P100Q207571F
  • License MIT

TypeScript definitions for statuses

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 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: Sat, 07 Jun 2025 02:15:25 GMT
    • Dependencies: none

    Credits

    These definitions were written by Tanguy Krotoff, BendingBender, and Sebastian Beltran.