TS2348error TS2348: Value of type ‘typeof BaseN’ is not callable. Did you mean to include ‘new’?Broken Code ❌123import {BaseN} from 'js-combinatorics';const iterator = BaseN([1, 2, 3], 2);Fixed Code ✔️123import {BaseN} from 'js-combinatorics';const iterator = new BaseN([1, 2, 3], 2);