0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-03-15 08:34:54 +00:00
renovatebot_renovate/lib/util/http/index.ts
2025-02-28 17:17:09 +00:00

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 {}