UNPKG

opennms

Version:

Client API for the OpenNMS network monitoring platform

15 lines (13 loc) 377 B
import {Filter} from './Filter'; import {IHash} from '../internal/IHash'; /** * Interface that represents a processor to convert a [[Filter]] into a set of HTTP parameters. * @module IFilterProcessor * @interface */ export interface IFilterProcessor { /** * Given a [[Filter]], return a hash of URL parameters. */ getParameters(filter: Filter): IHash<string>; }