Theia API Documentation v1.65.0
    Preparing search index...

    The fuzzy search input.

    interface Input<T> {
        items: readonly T[];
        pattern: string;
        transform: (item: T) => string;
    }

    Type Parameters

    • T
    Index

    Properties

    items: readonly T[]

    The items to filter based on the pattern.

    pattern: string

    The pattern to match.

    transform: (item: T) => string

    Function that extracts the string from the inputs which will be used to evaluate the fuzzy matching filter.