react-native-mentions-input
    Preparing search index...

    Type Alias WordWithPosition

    Represents a word and its position in the text. Used for detecting mention triggers.

    type WordWithPosition = {
        positionEnd: number;
        positionStart: number;
        word: string;
    }
    Index

    Properties

    positionEnd: number

    End position of the word in the text

    positionStart: number

    Start position of the word in the text

    word: string

    The word itself