UNPKG

earljs

Version:

Ergonomic, modern and type-safe assertion library

9 lines (8 loc) 271 B
import { Matcher } from './Base'; export declare class ObjectWithMatcher<T extends Object> extends Matcher { private readonly subset; constructor(subset: T); check(actualItem: unknown): boolean; toString(): string; static make(subset: Object): any; }