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

1.1.8 • Public • Published

Installation

npm install --save @types/content-type

Summary

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

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/content-type.

index.d.ts

export function parse(input: RequestLike | ResponseLike | string): ParsedMediaType;
export function format(obj: MediaType): string;

export interface ParsedMediaType {
    type: string;
    parameters: { [key: string]: string };
}

export interface MediaType {
    type: string;
    parameters?: { [key: string]: string } | undefined;
}

export interface RequestLike {
    headers: { [header: string]: string | string[] | undefined };
}

export interface ResponseLike {
    getHeader(name: string): number | string | string[] | undefined;
}

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: none

Credits

These definitions were written by Hiroki Horiuchi, and BendingBender.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/content-type

Weekly Downloads

222,375

Version

1.1.8

License

MIT

Unpacked Size

3.86 kB

Total Files

5

Last publish

Collaborators

  • types