1
0
Fork 0
js-utils/docs/api/js-utils.mergelist.md

25 lines
645 B
Markdown
Raw Normal View History

2020-03-29 13:43:52 +00:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [@apextoaster/js-utils](./js-utils.md) &gt; [mergeList](./js-utils.mergelist.md)
## mergeList() function
Merge arguments, which may or may not be arrays, into one return that is definitely an array.
<b>Signature:</b>
```typescript
export declare function mergeList<TItem>(...parts: Array<TItem | Array<TItem>>): Array<TItem>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| parts | <code>Array&lt;TItem &#124; Array&lt;TItem&gt;&gt;</code> | |
<b>Returns:</b>
`Array<TItem>`