UNPKG

@robotlegsjs/core

Version:

An architecture-based IoC framework for JavaScript/TypeScript

13 lines (12 loc) 230 B
/** * 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; }