UNPKG

mutation-summary

Version:
7 lines (6 loc) 143 B
/** * A simple interface representing a JavaScript object with strings for keys. */ export interface IStringMap<T> { [key: string]: T; }