UNPKG

alsatian

Version:

TypeScript and JavaScript testing framework for beautiful and readable tests

7 lines (6 loc) 251 B
import { PropertySpy } from "../spying"; import { Matcher } from "./matcher"; export declare class PropertyMatcher<PropertyType> extends Matcher<PropertySpy<PropertyType>> { toHaveBeenSet(): void; toHaveBeenSetTo(value: PropertyType): void; }