@resee-movies/utilities - v0.11.0
    Preparing search index...

    Type Alias TrigramMatch<T>

    The return type of calling findClosestTrigramMatch, containing the best fit candidate, and the similarity value.

    type TrigramMatch<T extends TrigramObject> = {
        candidate: T;
        similarity: number;
    }

    Type Parameters

    Index

    Properties

    candidate: T
    similarity: number