UNPKG

tamda

Version:

Practical functional programming library for TypeScript

7 lines (6 loc) 138 B
/** * A plain JavaScript object that has strings for keys with any value. */ export interface Indexable { [key: string]: any; }