UNPKG

@younho9/types

Version:

A set of utility types for TypeScript

7 lines (6 loc) 115 B
/** * Dictionary of Type * * @category Alternative */ export type Dict<Type = unknown> = Record<string, Type>;