@contract-case/case-plugin-base
Version:
Plugin framework for writing plugins for the ContractCase test framework
14 lines • 530 B
TypeScript
import { AnyCaseMatcher } from '@contract-case/case-plugin-dsl-types';
import type { DataContext } from '../context/types';
/**
* Tried to strip matchers from something that doesn't have an example
*
* Throw this during `matcher.strip` execution if `strip` has been called when the
* results can't be reconciled without an example.
*
* @public
*/
export declare class StripUnsupportedError extends Error {
constructor(matcher: AnyCaseMatcher, context: DataContext);
}
//# sourceMappingURL=StripUnsupportedError.d.ts.map