@types/basic-auth
TypeScript icon, indicating that this package has built-in type declarations

1.1.8 • Public • Published

Installation

npm install --save @types/basic-auth

Summary

This package contains type definitions for basic-auth (https://github.com/jshttp/basic-auth).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/basic-auth.

index.d.ts

/// <reference types="node" />

interface Request {
    headers?: {
        authorization?: string | undefined;
    };
}

// See https://github.com/jshttp/basic-auth/blob/v1.1.0/index.js#L49
declare function auth(req: Request): auth.BasicAuthResult | undefined;

declare namespace auth {
    interface BasicAuthResult {
        name: string;
        pass: string;
    }

    /**
     * Parse basic auth to object.
     */
    function parse(authorizationHeader: string): BasicAuthResult | undefined;
}

export = auth;

Additional Details

  • Last updated: Sat, 03 Feb 2024 04:35:43 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Clément Bourgeois, Vesa Poikajärvi, and Ryo Ota.

Dependents (54)

Package Sidebar

Install

npm i @types/basic-auth

Weekly Downloads

173,304

Version

1.1.8

License

MIT

Unpacked Size

4.04 kB

Total Files

5

Last publish

Collaborators

  • types