LWT JavaScript API
    Preparing search index...

    Term data returned from create/update operations.

    interface TermFullResponse {
        error?: string;
        success?: boolean;
        term?: {
            hex: string;
            id: number;
            lemma: string;
            lemmaLc: string;
            romanization: string;
            sentence: string;
            status: number;
            tags: string[];
            text: string;
            textLc: string;
            translation: string;
        };
    }
    Index

    Properties

    Properties

    error?: string
    success?: boolean
    term?: {
        hex: string;
        id: number;
        lemma: string;
        lemmaLc: string;
        romanization: string;
        sentence: string;
        status: number;
        tags: string[];
        text: string;
        textLc: string;
        translation: string;
    }