UNPKG

opennms

Version:

Client API for the OpenNMS network monitoring platform

10 lines (9 loc) 186 B
/** * A hash type for use in interfaces. * @interface * @category Internal */ export interface IHash<T> { /** Key must be string, value must be of type T. */ [key: string]: T; }