interface MatchingSettingsTabProps {
    matchConfig: MatchConfig;
    searchQuery: string;
    highlightedSectionId: null | string;
    onMatchConfigChange: (config: MatchConfig, field: string) => void;
    collapsedSections: Record<string, boolean>;
    onToggleSection: (sectionId: string) => void;
}

Properties

matchConfig: MatchConfig
searchQuery: string
highlightedSectionId: null | string
onMatchConfigChange: (config: MatchConfig, field: string) => void
collapsedSections: Record<string, boolean>
onToggleSection: (sectionId: string) => void