mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 03:49:34 +00:00
feat(recursive-list): integrate RecursiveList
with v11
This commit is contained in:
parent
42e50261a8
commit
d3417b0ed4
5 changed files with 13 additions and 26 deletions
|
@ -14,7 +14,9 @@ export interface RecursiveListProps extends RestProps {
|
|||
* Specify the children to render
|
||||
* @default []
|
||||
*/
|
||||
children?: Array<RecursiveListNode & { children?: RecursiveListNode[] }>;
|
||||
children?: ReadonlyArray<
|
||||
RecursiveListNode & { children?: ReadonlyArray<RecursiveListNode> }
|
||||
>;
|
||||
|
||||
/**
|
||||
* Specify the type of list to render
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue