511.d.ts 195 B

12345
  1. import HttpError from './http_error';
  2. declare class NetworkAuthenticationRequiredError extends HttpError {
  3. constructor(message?: string);
  4. }
  5. export default NetworkAuthenticationRequiredError;