1 | export function lookup(filenameOrExt: string): string | false;
|
2 | export function contentType(filenameOrExt: string): string | false;
|
3 | export function extension(typeString: string): string | false;
|
4 | export function charset(typeString: string): string | false;
|
5 | export namespace charsets {
|
6 | const lookup: typeof charset;
|
7 | }
|
8 | export const types: { [key: string]: string };
|
9 | export const extensions: { [key: string]: string[] };
|