@contract-case/case-plugin-base
Version:
Plugin framework for writing plugins for the ContractCase test framework
16 lines • 706 B
TypeScript
import { AnyCaseMatcherOrData, type 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 @contract-case/case-plugin-dsl-types#LookupableMatcher}
*/
export declare const coreLookupMatcher: (uniqueName: string, child: AnyCaseMatcherOrData) => LookupableMatcher;
//# sourceMappingURL=lookup.d.ts.map