import { FluentAsyncIterable, FluentIterable } from '../base'; export interface AppendFunction { /** * Appends a value to the end of the iterable. * @param items The items to be appended to the iterable. * @returns The [[FluentAsyncIterable]] appended with the element. */ (...items: T[]): FluentIterable; } export interface AsyncAppendFunction { /** * Appends a value to the end of the iterable. * @param items The item to be appended to the iterable. * @returns The [[FluentAsyncIterable]] appended with the element. */ (...items: T[]): FluentAsyncIterable; }