ix
Version:
The Interactive Extensions for JavaScript
27 lines (23 loc) • 754 B
text/typescript
import { AsyncIterableX } from '../../asynciterable/asynciterablex.js';
import { average } from '../../asynciterable/average.js';
import { MathOptions } from '../../asynciterable/mathoptions.js';
export function averageProto(
this: AsyncIterable<number>,
options?: MathOptions<number>
): Promise<number>;
export function averageProto<TSource>(
this: AsyncIterable<TSource>,
options?: MathOptions<TSource>
): Promise<number>;
export function averageProto(
this: AsyncIterable<any>,
options?: MathOptions<any>
): Promise<number> {
return average(this, options);
}
AsyncIterableX.prototype.average = averageProto;
declare module '../../asynciterable/asynciterablex' {
interface AsyncIterableX<T> {
average: typeof averageProto;
}
}