Props for SyncStatusPrioritySection component.
interface SyncStatusPrioritySectionProps { /** Current sync configuration. */ syncConfig: SyncConfig; /** Current search query. */ searchQuery: string; /** Currently highlighted section ID. */ highlightedSectionId: string | null; /** Callback when sync config changes. */ onSyncConfigChange: (config: SyncConfig, field: string) => void; /** Callback to set entire sync config. */ setSyncConfig: (config: SyncConfig) => void;} Copy
interface SyncStatusPrioritySectionProps { /** Current sync configuration. */ syncConfig: SyncConfig; /** Current search query. */ searchQuery: string; /** Currently highlighted section ID. */ highlightedSectionId: string | null; /** Callback when sync config changes. */ onSyncConfigChange: (config: SyncConfig, field: string) => void; /** Callback to set entire sync config. */ setSyncConfig: (config: SyncConfig) => void;}
Current sync configuration.
Current search query.
Currently highlighted section ID.
Callback when sync config changes.
Callback to set entire sync config.
Props for SyncStatusPrioritySection component.
Source