Interface LanguageNegotiationResult

Output of negotiation step.

interface LanguageNegotiationResult {
    sourceLanguage: string;
    targetLanguage: string;
    pivotLanguage?: string;
    confidence: number;
    negotiationPath: string[];
    warnings?: string[];
}

Properties

sourceLanguage: string
targetLanguage: string
pivotLanguage?: string
confidence: number
negotiationPath: string[]
warnings?: string[]