@types/content-type
Version:
TypeScript definitions for content-type
47 lines (36 loc) • 1.52 kB
Markdown
# 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](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/content-type/index.d.ts)
````ts
// Type definitions for content-type 1.1
// Project: https://github.com/jshttp/content-type
// Definitions by: Hiroki Horiuchi <https://github.com/horiuchi>
// BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
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: Fri, 09 Jul 2021 02:32:23 GMT
* Dependencies: none
* Global values: none
# Credits
These definitions were written by [Hiroki Horiuchi](https://github.com/horiuchi), and [BendingBender](https://github.com/BendingBender).