UNPKG

251 BTypeScriptView Raw
1import { PropertySpy } from "../spying";
2import { Matcher } from "./matcher";
3export declare class PropertyMatcher<PropertyType> extends Matcher<PropertySpy<PropertyType>> {
4 toHaveBeenSet(): void;
5 toHaveBeenSetTo(value: PropertyType): void;
6}