Skip to content

Commit

Permalink
Add missing silent parameter to two methods
Browse files Browse the repository at this point in the history
  • Loading branch information
codershiba committed May 2, 2024
1 parent 11ab9a7 commit ee27f01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/selectize/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ declare namespace Selectize {
/**
* Removes all options from the control.
*/
clearOptions(): void;
clearOptions(silent?: boolean): void;

/**
* Retrieves the jQuery element for the option identified by the given value.
Expand Down Expand Up @@ -489,7 +489,7 @@ declare namespace Selectize {
/**
* Re-renders the selected item lists.
*/
refreshItems(): void;
refreshItems(silent?: boolean): void;

// Optgroups
// ------------------------------------------------------------------------------------------------------------
Expand Down

0 comments on commit ee27f01

Please sign in to comment.