Refactor #3922 - For TreeSelect

This commit is contained in:
Tuğçe Küçükoğlu 2023-05-07 22:51:06 +03:00
parent 6382a616fa
commit c70b5703cd
4 changed files with 117 additions and 13 deletions

View file

@ -64,6 +64,7 @@ import { TieredMenuPassThroughOptions } from '../tieredmenu';
import { ToastPassThroughOptions } from '../toast';
import { ToolbarPassThroughOptions } from '../toolbar';
import { TreePassThroughOptions } from '../tree';
import { TreeSelectPassThroughOptions } from '../treeselect';
import { VirtualScrollerPassThroughOptions } from '../virtualscroller';
interface PrimeVueConfiguration {
@ -150,6 +151,7 @@ interface PrimeVuePTOptions {
toast?: ToastPassThroughOptions;
toolbar?: ToolbarPassThroughOptions;
tree?: TreePassThroughOptions;
treeselect?: TreeSelectPassThroughOptions;
virtualscroller?: VirtualScrollerPassThroughOptions;
}