/**
 * A simple, generic Dictionary interface.
 *
 * @since 4.12.1.210629
 */
export interface IDictionary<T> {
	[key: string]: T;
}