UNPKG

@contract-case/case-plugin-base

Version:

Plugin framework for writing plugins for the ContractCase test framework

16 lines 664 B
import { AnyCaseMatcherOrData, LookupableMatcher } from '@contract-case/case-plugin-dsl-types'; /** * Creates a matcher descriptor for a lookupable matcher. * @public * @remarks * * Useful if you want to automatically name lookupable matcher descriptors in your plugin. * * Note that lookup matchers must have identical contents when rendered. * * @param uniqueName - the name for this lookupable matcher * @param child - the contents of this lookupable matcher * @returns a {@link LookupableMatcher} */ export declare const coreLookupMatcher: (uniqueName: string, child: AnyCaseMatcherOrData) => LookupableMatcher; //# sourceMappingURL=lookup.d.ts.map