One Hat Cyber Team
Your IP :
216.73.216.194
Server IP :
185.33.55.30
Server :
Linux cl30.webspacecontrol.com 5.14.0-611.38.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 10 17:21:28 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.1.34
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
esetkocsi
/
www
/
node_modules
/
@types
/
mime
/
View File Name :
index.d.ts
// Type definitions for mime 1.3 // Project: https://github.com/broofa/node-mime // Definitions by: Jeff Goddard <https://github.com/jedigo> // Daniel Hritzkiv <https://github.com/dhritzkiv> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Originally imported from: https://github.com/soywiz/typescript-node-definitions/mime.d.ts export as namespace mime; export interface TypeMap { [key: string]: string[]; } /** * Look up a mime type based on extension. * * If not found, uses the fallback argument if provided, and otherwise * uses `default_type`. */ export function lookup(path: string, fallback?: string): string; /** * Return a file extensions associated with a mime type. */ export function extension(mime: string): string | undefined; /** * Load an Apache2-style ".types" file. */ export function load(filepath: string): void; export function define(mimes: TypeMap): void; export interface Charsets { lookup(mime: string, fallback: string): string; } export const charsets: Charsets; export const default_type: string;