Socket
Socket
Sign inDemoInstall

@types/basic-auth

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/basic-auth

TypeScript definitions for basic-auth


Version published
Weekly downloads
197K
increased by15.17%
Maintainers
1
Weekly downloads
 
Created
Source

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.

FAQs

Package last updated on 03 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc