ossplz/alsatian-fluent-assertions

View on GitHub
src/matchers/i-narrowable-operators.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { IFluentCore } from "./i-fluent-core";

export interface INarrowableOperators<TNext, T, TPrev> {
  /**
   * Narrows the assertion scope to the last operation's implied result.
   * Example:
   *   .has(o => o.prop).that.has(p => p.itsOwnProp)
   * See https://git.io/vptQr
   */
  that: IFluentCore<TNext, void, T>;
}