interfaceMatchImportExportSectionProps { /** Currently selected match import file. */ matchImportFile: File | null; /** Error message if match import file validation fails. */ matchImportError: string | null; /** Whether match import is currently in progress. */ isImportingMatches: boolean; /** Callback when user selects a match import file. */ onMatchImportFileSelect: (event: React.ChangeEvent<HTMLInputElement>) =>void; /** Callback to trigger match import with selected strategy. */ onImportMatches: ( file: File, strategy: "replace" | "merge" | "skip-duplicates", ) =>void; }
Props for MatchImportExportSection component.
Source