File tree Expand file tree Collapse file tree 2 files changed +18
-6
lines changed
packages/lit-dev-content/site/docs Expand file tree Collapse file tree 2 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -1831,7 +1831,10 @@ import {asyncAppend} from 'lit/directives/async-append.js';
1831
1831
<td class="wide-cell">
1832
1832
1833
1833
` ` ` ts
1834
- asyncAppend (iterable: AsyncIterable)
1834
+ asyncAppend (
1835
+ iterable: AsyncIterable< I > ,
1836
+ mapper?: (item : I , index ?: number ) => unknown
1837
+ )
1835
1838
` ` `
1836
1839
1837
1840
</td>
@@ -1924,7 +1927,10 @@ import {asyncReplace} from 'lit/directives/async-replace.js';
1924
1927
<td class="wide-cell">
1925
1928
1926
1929
` ` ` ts
1927
- asyncReplace (iterable: AsyncIterable)
1930
+ asyncReplace (
1931
+ iterable: AsyncIterable< I > ,
1932
+ mapper?: (item : I , index ?: number ) => unknown
1933
+ )
1928
1934
` ` `
1929
1935
1930
1936
</td>
@@ -1933,7 +1939,7 @@ asyncReplace(iterable: AsyncIterable)
1933
1939
<td class="no-wrap-cell vcenter-cell">Usable location</td>
1934
1940
<td class="wide-cell">
1935
1941
1936
- Child expression
1942
+ Any expression
1937
1943
1938
1944
</td>
1939
1945
</tr>
Original file line number Diff line number Diff line change @@ -1831,7 +1831,10 @@ import {asyncAppend} from 'lit/directives/async-append.js';
1831
1831
<td class="wide-cell">
1832
1832
1833
1833
` ` ` ts
1834
- asyncAppend (iterable: AsyncIterable)
1834
+ asyncAppend (
1835
+ iterable: AsyncIterable< I > ,
1836
+ mapper?: (item : I , index ?: number ) => unknown
1837
+ )
1835
1838
` ` `
1836
1839
1837
1840
</td>
@@ -1924,7 +1927,10 @@ import {asyncReplace} from 'lit/directives/async-replace.js';
1924
1927
<td class="wide-cell">
1925
1928
1926
1929
` ` ` ts
1927
- asyncReplace (iterable: AsyncIterable)
1930
+ asyncReplace (
1931
+ iterable: AsyncIterable< I > ,
1932
+ mapper?: (item : I , index ?: number ) => unknown
1933
+ )
1928
1934
` ` `
1929
1935
1930
1936
</td>
@@ -1933,7 +1939,7 @@ asyncReplace(iterable: AsyncIterable)
1933
1939
<td class="no-wrap-cell vcenter-cell">Usable location</td>
1934
1940
<td class="wide-cell">
1935
1941
1936
- Child expression
1942
+ Any expression
1937
1943
1938
1944
</td>
1939
1945
</tr>
You can’t perform that action at this time.
0 commit comments