UNPKG

138 BTypeScriptView Raw
1import { KeyofBase } from "../key-of-base";
2export type Dictionary<Type, Keys extends KeyofBase = string> = {
3 [key in Keys]: Type;
4};