/**
 * Simple Object Matcher
 */
export interface IMatcher {
    /**
     * Does this object match the given criteria?
     *
     * @param item The object to test
     * @return boolean
     */
    matches(item: any): boolean;
}
