@types/db-hafas-stations-autocomplete
TypeScript icon, indicating that this package has built-in type declarations

2.0.2 • Public • Published

Installation

npm install --save @types/db-hafas-stations-autocomplete

Summary

This package contains type definitions for db-hafas-stations-autocomplete (https://github.com/derhuerst/db-hafas-stations-autocomplete).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/db-hafas-stations-autocomplete.

index.d.ts

export = autocomplete;

/**
 * Search & autocompletion for [Deutsche Bahn](https://en.wikipedia.org/wiki/Deutsche_Bahn) stations.
 * Pulls its data from [`db-hafas-stations`](https://github.com/derhuerst/db-hafas-stations).
 *
 * @example
 * import autocomplete = require('db-hafas-stations-autocomplete')
 *
 * autocomplete('Münch', 3)
 * // =>
 * // [
 * //   {
 * //     id: '624637',
 * //     relevance: 0.878345935,
 * //     score: 4.601702707916342,
 * //     weight: 143.8
 * //   },
 * //   {
 * //     id: '620368',
 * //     relevance: 0.878345935,
 * //     score: 4.601702707916342,
 * //     weight: 143.8
 * //   },
 * //   {
 * //     id: '8000261',
 * //     relevance: 0.878345935,
 * //     score: 4.601702707916342,
 * //     weight: 143.8
 * //   }
 * // ]
 */
declare function autocomplete(
    query: string,
    /** @default 6 */
    limit?: number,
    /**
     * If you set `fuzzy` to `true`, words with a
     * [Levenshtein distance](https://en.wikipedia.org/wiki/Levenshtein_distance) `<= 3` will be taken into account.
     * This is a lot slower though.
     *
     * @default false
     */
    fuzzy?: boolean,
    /**
     * Setting `completion` to `false` speeds things up.
     *
     * @default true
     */
    completion?: boolean,
): autocomplete.Result[];

declare namespace autocomplete {
    interface Result {
        id: string;
        relevance: number;
        score: number;
        weight: number;
    }
}

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: none

Credits

These definitions were written by BendingBender.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/db-hafas-stations-autocomplete

Weekly Downloads

1

Version

2.0.2

License

MIT

Unpacked Size

5.65 kB

Total Files

5

Last publish

Collaborators

  • types