LWT JavaScript API
    Preparing search index...

    Word data for client-side rendering.

    interface TextWord {
        hex: string;
        hidden: boolean;
        isNotWord: boolean;
        notes?: string;
        position: number;
        romanization?: string;
        sentenceId: number;
        status?: number;
        tags?: string;
        text: string;
        textLc: string;
        translation?: string;
        wordCount: number;
        wordId?: number | null;
        [key: `mw${number}`]: MultiWordRef | undefined;
    }

    Indexable

    Index

    Properties

    hex: string
    hidden: boolean
    isNotWord: boolean
    notes?: string
    position: number
    romanization?: string
    sentenceId: number
    status?: number
    tags?: string
    text: string
    textLc: string
    translation?: string
    wordCount: number
    wordId?: number | null