Props for ImportMatchesDialog component.
export interface ImportMatchesDialogProps { open: boolean; onOpenChange: (open: boolean) => void; onImportComplete: (result: { imported: number; merged: number; skipped: number; }) => void;} Copy
export interface ImportMatchesDialogProps { open: boolean; onOpenChange: (open: boolean) => void; onImportComplete: (result: { imported: number; merged: number; skipped: number; }) => void;}
Dialog open state.
Callback for open state changes.
Callback after successful import with statistics.
Props for ImportMatchesDialog component.
Source