mirror of
https://github.com/renovatebot/renovate.git
synced 2025-03-15 08:34:54 +00:00
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
import { EmptyResultError } from './errors';
|
|
import { RequestError } from './got';
|
|
import { HttpBase } from './http';
|
|
|
|
export { RequestError as HttpError, EmptyResultError };
|
|
|
|
export type * from './types';
|
|
|
|
export class Http extends HttpBase {}
|