The transpiller complains of:
The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
about this code:
import { map } from 'rxjs/operators';
const multiply = num => map(value => value * num);
How can I fix it ?