Props for SyncAutoPauseSection component.
interface SyncAutoPauseSectionProps { /** Current sync configuration. */ syncConfig: SyncConfig; /** Whether custom threshold is currently enabled. */ isCustomThresholdEnabled: boolean; /** 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 toggle custom threshold. */ onCustomThresholdToggle: (value: boolean) => void; /** Callback to set entire sync config. */ setSyncConfig: (config: SyncConfig) => void;} Copy
interface SyncAutoPauseSectionProps { /** Current sync configuration. */ syncConfig: SyncConfig; /** Whether custom threshold is currently enabled. */ isCustomThresholdEnabled: boolean; /** 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 toggle custom threshold. */ onCustomThresholdToggle: (value: boolean) => void; /** Callback to set entire sync config. */ setSyncConfig: (config: SyncConfig) => void;}
Current sync configuration.
Whether custom threshold is currently enabled.
Current search query.
Currently highlighted section ID.
Callback when sync config changes.
Callback to toggle custom threshold.
Callback to set entire sync config.
Props for SyncAutoPauseSection component.
Source