UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

21 lines (16 loc) 629 B
// Type definitions for mime // Project: https://github.com/broofa/node-mime // Definitions by: Jeff Goddard <https://github.com/jedigo> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Imported from: https://github.com/soywiz/typescript-node-definitions/mime.d.ts declare module "mime" { export function lookup(path: string): string; export function extension(mime: string): string; export function load(filepath: string): void; export function define(mimes: Object): void; interface Charsets { lookup(mime: string): string; } export var charsets: Charsets; export var default_type: string; }