UNPKG

563 BTypeScriptView Raw
1// Type definitions for mime 3.0
2// Project: https://github.com/broofa/node-mime
3// Definitions by: Jeff Goddard <https://github.com/jedigo>
4// Daniel Hritzkiv <https://github.com/dhritzkiv>
5// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
6
7// Originally imported from: https://github.com/soywiz/typescript-node-definitions/mime.d.ts
8
9import Mime = require('./Mime');
10
11export as namespace mime;
12
13declare namespace mime {
14 interface TypeMap {
15 [key: string]: string[];
16 }
17}
18
19declare const mime: Mime;
20
21export = mime;