UNPKG

arch-unit-ts

Version:
8 lines (7 loc) 276 B
import { GivenMethodsConjunction } from './GivenMethodsConjunction'; import { MethodsShould } from './MethodsShould'; import { MethodsThat } from './MethodsThat'; export interface GivenMethods { that(): MethodsThat<GivenMethodsConjunction>; should(): MethodsShould; }