UNPKG

587 BTypeScriptView Raw
1// Type definitions for mime-types 2.1
2// Project: https://github.com/jshttp/mime-types#readme
3// Definitions by: Gyusun Yeom <https://github.com/Perlmint>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6export function lookup(filenameOrExt: string): string | false;
7export function contentType(filenameOrExt: string): string | false;
8export function extension(typeString: string): string | false;
9export function charset(typeString: string): string | false;
10export const types: {[key: string]: string};
11export const extensions: {[key: string]: string[]};