UNPKG

tamda

Version:

Practical functional programming library for TypeScript

7 lines (6 loc) 162 B
/** * A plain JavaScript object that is similar to a native Map, but always has strings as keys. */ export interface ObjectMap<T> { [key: string]: T; }