mirror of
https://github.com/ckaczor/LaundryMonitor.git
synced 2026-02-16 10:58:35 -05:00
Move project to GitHub and hide Telegram config
This commit is contained in:
20
typings/mime/mime.d.ts
vendored
Normal file
20
typings/mime/mime.d.ts
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
// Type definitions for mime
|
||||
// Project: https://github.com/broofa/node-mime
|
||||
// Definitions by: Jeff Goddard <https://github.com/jedigo>
|
||||
// Definitions: https://github.com/borisyankov/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;
|
||||
}
|
||||
Reference in New Issue
Block a user