⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
@types
/
mime-db
/
View File Name :
index.d.ts
// Type definitions for mime-db 1.43 // Project: https://github.com/jshttp/mime-db // Definitions by: AJP <https://github.com/AJamesPhillips> // Linus Unnebäck <https://github.com/LinusU> // Piotr Błażejewicz <https://github.com/peterblazejewicz> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare namespace database { /** * @see {@link https://github.com/jshttp/mime-db#data-structure} */ interface MimeEntry { /** * Where the mime type is defined. * If not set, it's probably a custom media type. */ readonly source?: MimeSource | undefined; /** Known extensions associated with this mime type. */ readonly extensions?: ReadonlyArray<string> | undefined; /** Whether a file of this type can be gzipped. */ readonly compressible?: boolean | undefined; /** The default charset associated with this type, if any. */ readonly charset?: string | undefined; } /** * @see {@link https://github.com/jshttp/mime-db#data-structure} */ interface MimeDatabase { readonly [type: string]: MimeEntry; } /** * Sources: * http://www.iana.org/assignments/media-types/media-types.xhtml * http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types * http://hg.nginx.org/nginx/raw-file/default/conf/mime.types */ type MimeSource = 'iana' | 'apache' | 'nginx'; } declare const database: database.MimeDatabase; export = database;