/**
 * Interface defining the object can have any string-based key and value.
 *
 * @see [HashMapOfStrings](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface HashMapOfStrings {
    [key: string]: string;
}
