This interface is just an abbreviation for objects that define a flat group of words. It is used in the interface WordsDef to improve readability. Words are strings that provide an abstract structure to identify particular concrete strings in a given language.

OBSERVATION: It is expressed using index signatures.

interface WordsFlatDef {
    [index: string]: string;
}

Indexable

[index: string]: string