import { Assertion } from '../smartexpect.classes.assertion.js'; /** * Namespace for function-specific matchers */ export class FunctionMatchers { constructor(private assertion: Assertion) {} toThrow(expectedError?: any) { return this.assertion.toThrow(expectedError); } }