Interface TranslateOptions<TTranslation>

interface TranslateOptions {
    context?: Context;
    key: Key<TTranslation>;
    locale: string;
    plugins?: readonly HooklationPlugin[];
    translations: HooklationTranslations<TTranslation>;
}

Type Parameters

Properties

context?: Context
key: Key<TTranslation>
locale: string
plugins?: readonly HooklationPlugin[]
translations: HooklationTranslations<TTranslation>

Generated using TypeDoc