Clov Packages
    Preparing search index...

    Interface LocalizedMessage

    Localized message returned by the factories of defineMessageCatalog.

    Pass it to resolveMessage to get the final string for a locale.

    interface LocalizedMessage {
        defaultLocale: string;
        params?: Readonly<Record<string, string>>;
        translations: Translations;
    }
    Index
    defaultLocale: string

    Locale used when no explicit locale is passed to resolveMessage.

    params?: Readonly<Record<string, string>>

    Parameter values to interpolate into {{placeholder}} tokens.

    translations: Translations

    All available translations keyed by locale.