UNPKG

192 BTypeScriptView Raw
1/**
2 * https://simplestatistics.org/docs/#combinationsreplacement
3 */
4declare function combinationsReplacement<T extends any[]>(x: T, k: number): T[];
5
6export default combinationsReplacement;