UNPKG

alsatian-fluent-assertions

Version:

Fluent assertions extension to Alsatian xUnit framework.

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