diff --git a/components/lib/listbox/Listbox.d.ts b/components/lib/listbox/Listbox.d.ts index c57f1d686..d719dde04 100755 --- a/components/lib/listbox/Listbox.d.ts +++ b/components/lib/listbox/Listbox.d.ts @@ -435,8 +435,14 @@ export interface ListboxSlots { }): VNode[]; /** * Custom filter icon template. + * @param {Object} scope - filter icon slot's params. */ - filtericon(): VNode[]; + filtericon(scope: { + /** + * Style class of the filter icon + */ + class: any; + }): VNode[]; } /**