Operator '+' cannot be applied to types '() => number' and 'number'
// Credit: https://stackoverflow.com/questions/47484525/operator-cannot-be-applied-to-types-number-and-1
you can try adding the unary operator + like,
CurrentPage: +this.paging.PageIndex + 1
which will also work in your case.
Hope this helps!