UNPKG

ts-essentials

Version:
5 lines (4 loc) 138 B
import { KeyofBase } from "../key-of-base"; export type Dictionary<Type, Keys extends KeyofBase = string> = { [key in Keys]: Type; };