import type { Asyncerator } from '../asyncerator'; /** * Similar to Promise.all(), but instead returns values as they become available via an Asyncerator. * Note: the output order is different from the input order, the fastest promise to resolve * will be first, the slowest last. * * @param promises */ export default function (promises: Iterable>): Asyncerator;