Properties that can be passed into the constructor for LanguageResources.

interface LanguageResourcesProperties {
    id?: string;
    locale?: string;
    values?: Record<string, string>;
}

Hierarchy (view full)

Properties

Properties

id?: string

The unique ID to assign to the entity. If not specified, one will be generated.

locale?: string

The locale of the strings.

values?: Record<string, string>

The set of localized strings, indexed by unique key.