I have this line of code
import { Observable, throw} from 'rxjs';
I'm getting the error identifier expected:
ERROR in config/config.service.ts(3,22): error TS1003: Identifier expected.
It indicated the error is stemming from that line/ position 22, which is the start of the throw
word.
What do i need to do in order to resolve this issue? what do they mean by an identifier?