import type { Selector } from '../../../Types'; import type { IEnumerable } from '../../_types'; /** * Sums the items in the enumerable using the selector * @param selector selector to return the number to be summed */ export default function sum(enumerable: IEnumerable, selector: Selector): number;