Socket
Socket
Sign inDemoInstall

@types/co-body

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/co-body

TypeScript definitions for co-body


Version published
Weekly downloads
158K
increased by7.44%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/co-body

Summary

This package contains type definitions for co-body (https://github.com/cojs/co-body).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/co-body.

index.d.ts

// Type definitions for co-body 5.1
// Project: https://github.com/cojs/co-body
// Definitions by: Joshua DeVinney <https://github.com/geoffreak>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

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

import * as http from 'http';
import * as qs from 'qs';

declare namespace CoBody {
    type Context = http.IncomingMessage | { req: http.IncomingMessage };

    export interface Parse {
        (context: Context, options?: Options): Promise<any>;
        text: (context: Context, options?: Options) => Promise<any>;
        form: (context: Context, options?: Options) => Promise<any>;
        json: (context: Context, options?: Options) => Promise<any>;
    }

    export interface Options {
        limit?: number | string | undefined;
        strict?: boolean | undefined;
        queryString?: qs.IParseOptions | undefined;
        jsonTypes?: string[] | undefined;
        returnRawBody?: boolean | undefined;
        formTypes?: string[] | undefined;
        textTypes?: string[] | undefined;
        encoding?: string | undefined;
        length?: number | undefined;
    }
}

declare var CoBody: CoBody.Parse;
export = CoBody;

Additional Details

  • Last updated: Tue, 06 Jul 2021 18:05:54 GMT
  • Dependencies: @types/qs, @types/node
  • Global values: none

Credits

These definitions were written by Joshua DeVinney.

FAQs

Package last updated on 06 Jul 2021

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