Refactor #1451 - For Dropdown

pull/1453/head
mertsincan 2021-08-16 11:50:32 +03:00
parent 7cdef9dc17
commit d128063d59
1 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
import { VNode } from 'vue'; import { VNode } from 'vue';
import { VirtualScrollerProps } from '../virtualscroller';
interface DropdownProps { interface DropdownProps {
modelValue?: any; modelValue?: any;
@ -28,6 +29,7 @@ interface DropdownProps {
panelClass?: string; panelClass?: string;
loading?: boolean; loading?: boolean;
loadingIcon?: string; loadingIcon?: string;
virtualScrollerOptions?: VirtualScrollerProps;
} }
declare class Dropdown { declare class Dropdown {