interface ICreateTuplesOptions { items: TItem[]; itemsPerTuple: number; onePermutation?: boolean; } export function createTuples({ items, itemsPerTuple, onePermutation }: ICreateTuplesOptions): TItem[][] { // TODO: Implement (probbably implemented and deleted in GIT history) return []; }