UNPKG

alsatian-fluent-assertions

Version:

Fluent assertions extension to Alsatian xUnit framework.

6 lines (5 loc) 272 B
import { PropertyLambda } from "./property-lambda"; /** Dictionary type for asserting over some values within an object. */ export declare type SubsetPropertyDict<T> = { [key in keyof T]?: T[key] | PropertyLambda<T[key]> | RegExp | SubsetPropertyDict<T[key]>; };