UNPKG

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