@case-contract-testing/case
Version:
Next-generation contract testing suite
5 lines (4 loc) • 493 B
TypeScript
import type { AnyCaseNodeOrData, MatchContextWithoutLookup } from '../../../../entities/types';
import type { LookupMap, LookupType } from './types';
export declare const addLookup: (matcherLookup: LookupMap, lookupType: LookupType, uniqueName: string, matcher: AnyCaseNodeOrData, context: MatchContextWithoutLookup) => Record<string, AnyCaseNodeOrData>;
export declare const findLookup: (matcherLookup: LookupMap, lookupType: LookupType, uniqueName: string) => AnyCaseNodeOrData | undefined;