3.0.6 • Published 6 months ago

@types/mimos v3.0.6

Weekly downloads
25,822
License
MIT
Repository
github
Last release
6 months ago

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

// Type definitions for mimos 3.0
// Project: https://github.com/hapijs/mimos
// Definitions by: AJP <https://github.com/AJamesPhillips>
//                 Linus Unnebäck <https://github.com/LinusU>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2

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, 06 Jul 2021 22:03:04 GMT
  • Dependencies: @types/mime-db
  • Global values: none

Credits

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

3.0.4

8 months ago

3.0.6

6 months ago

3.0.5

7 months ago

3.0.3

3 years ago

3.0.2

4 years ago

3.0.1

7 years ago

3.0.0

7 years ago