/**
 * Dictionary of Type
 *
 * @category Alternative
 */
export type Dict<Type = unknown> = Record<string, Type>;
