LWT JavaScript API
    Preparing search index...

    Word data stored in the word store.

    interface WordData {
        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