first commit
This commit is contained in:
21
node_modules/lit-html/directives/join.d.ts
generated
vendored
Normal file
21
node_modules/lit-html/directives/join.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2021 Google LLC
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
/**
|
||||
* Returns an iterable containing the values in `items` interleaved with the
|
||||
* `joiner` value.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* ```ts
|
||||
* render() {
|
||||
* return html`
|
||||
* ${join(items, html`<span class="separator">|</span>`)}
|
||||
* `;
|
||||
* }
|
||||
*/
|
||||
export declare function join<I, J>(items: Iterable<I> | undefined, joiner: (index: number) => J): Iterable<I | J>;
|
||||
export declare function join<I, J>(items: Iterable<I> | undefined, joiner: J): Iterable<I | J>;
|
||||
//# sourceMappingURL=join.d.ts.map
|
Reference in New Issue
Block a user