NestedMessages Interface
Represents nested message structures where each key can map to either a string or another nested messages object.
export declare type NestedMessages = {
[key: string]: string | NestedMessages;
};
Remarks
This type is commonly used for localization and internationalization purposes, allowing for hierarchical message structures.