A focused sub-screen within a dense category (e.g. Vault → Location/Folders/Remote).
| 96 | |
| 97 | /** A focused sub-screen within a dense category (e.g. Vault → Location/Folders/Remote). */ |
| 98 | interface SettingsSubTab { |
| 99 | id: string |
| 100 | title: string |
| 101 | /** Search-item ids that live on this sub-tab, so search-jump can open the right one. */ |
| 102 | searchIds?: string[] |
| 103 | content: JSX.Element |
| 104 | } |
| 105 | |
| 106 | interface SettingsCategory extends SettingsSearchCategory<SettingsCategoryId> { |
| 107 | id: SettingsCategoryId |
nothing calls this directly
no outgoing calls
no test coverage detected