pull/2798/head
Tuğçe Küçükoğlu 2022-07-18 15:26:29 +03:00
parent df5f04e30f
commit 35a8bf636a
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import { TreeNode } from '../tree';
type TreeSelectSelectionModeType = 'single' | 'multiple' | 'checkbox' | undefined;
type TreeSelectAppendToType = 'body' | 'self' | string | undefined;
type TreeSelectAppendToType = 'body' | 'self' | string | undefined | HTMLElement;
type TreeSelectDisplayType = 'comma' | 'chip' | undefined;
@ -113,7 +113,7 @@ export interface TreeSelectSlots {
/**
* Selected value
*/
value: TreeNode | any;
value: TreeNode | any;
/**
* An array of treenodes.
*/