I am facing an issue while trying to extend the RequestError class. The super constructor call is giving me an issue as mentioned below
import {RequestError} from 'got';
class NetworkError extends RequestError{
constructor(err:RequestError){
super(err.message,err,err.request);
}
}
1