Skip to content

Commit

Permalink
chore: fix api extract warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaoumov committed Oct 8, 2024
1 parent 4176b25 commit f82edcd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/obsidian/internals/AppSetting.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,36 +43,36 @@ export interface AppSetting extends Modal {
tabHeadersEl: HTMLElement;

/**
* @param tab Tab to add
* @param tab - Tab to add
* @internal Add a new plugin tab to the settings modal
*/
addSettingTab(tab: SettingTab): void;
/** @internal Closes the currently active tab */
closeActiveTab(): void;
/**
* @param tab Tab to check
* @param tab - Tab to check
* @internal Check whether tab is a plugin tab
*/
isPluginSettingTab(tab: SettingTab): boolean;
/**
* @param tab Tab to open
* @param tab - Tab to open
* @internal Open a specific tab by tab reference
*/
openTab(tab: SettingTab): void;
openTabById(id: 'hotkeys'): HotkeysSettingTab;
/**
* Open a specific tab by ID
*
* @param id ID of the tab to open
* @param id - ID of the tab to open
*/
openTabById(id: string): SettingTab;
/**
* @param tab Tab to remove
* @param tab - Tab to remove
* @internal Remove a plugin tab from the settings modal
*/
removeSettingTab(tab: SettingTab): void;
/**
* @param tab Tab to update the title to
* @param tab - Tab to update the title to
* @internal Update the title of the modal
*/
updateModalTitle(tab: SettingTab): void;
Expand Down

0 comments on commit f82edcd

Please sign in to comment.