UNPKG

document-conversion-assistant

Version:

A document conversion tool that maintains format and style consistency

8 lines 369 B
declare module 'mime-types' { export function lookup(path: string): string | false; export function contentType(type: string): string | false; export function extension(type: string): string | false; export function charset(type: string): string | false; export const types: { [key: string]: string }; export const extensions: { [key: string]: string[] }; }