UNPKG

earljs

Version:

Ergonomic, modern and type-safe assertion library

9 lines (8 loc) 290 B
import { Matcher } from './Base'; export declare class ContainerWithMatcher<T> extends Matcher { private readonly expectedItems; constructor(expectedItems: ReadonlyArray<T>); check(actualItems: unknown): boolean; toString(): string; static make(...items: any[]): any; }