@types/mimos
TypeScript icon, indicating that this package has built-in type declarations

3.0.6 • Public • Published

Installation

npm install --save @types/mimos

Summary

This package contains type definitions for mimos (https://github.com/hapijs/mimos).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mimos.

index.d.ts

import { MimeEntry } from "mime-db";

/**
 * @see {@link https://github.com/hapijs/mimos#new-mimosoptions}
 */
export interface MimosOptions {
    /**
     * an object hash that is merged into the built in mime information specified here {@link https://github.com/jshttp/mime-db}. Each key value pair represents a single mime object. Each override value should follow this schema:
     *  * the key is the lower-cased correct mime-type. (Ex. "application/javascript").
     *  * the value should an object @see MimosOptionsValue
     */
    override: { [index: string]: MimosOptionsValue };
}

export interface MimosOptionsValue extends MimeEntry {
    /** specify the type value of result objects, defaults to key. See the example below for more clarification. */
    type?: string | undefined;
    /** method with signature function(mime) when this mime type is found in the database, this function will run. This allows you make customizations to mime based on developer criteria. */
    predicate?: ((mime: MimosOptionsValue) => MimosOptionsValue) | undefined;
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: @types/mime-db

Credits

These definitions were written by AJP, and Linus Unnebäck.

Versions

Current Tags

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 3.0.6
    7,452
  • 3.0.5
    653
  • 3.0.4
    3,182
  • 3.0.3
    8,131
  • 3.0.2
    1,612
  • 3.0.1
    1,326
  • 3.0.0
    1

Package Sidebar

Install

npm i @types/mimos

Weekly Downloads

22,357

Version

3.0.6

License

MIT

Unpacked Size

4.92 kB

Total Files

5

Last publish

Collaborators

  • types