mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-09 21:46:26 +00:00
chore: fix type import
This commit is contained in:
parent
b1ce02b44b
commit
53743b27bf
1 changed files with 5 additions and 5 deletions
|
@ -4,11 +4,11 @@ import { REPOSITORY_ARCHIVED } from '../../../constants/error-messages';
|
||||||
import { setBaseUrl } from '../../../util/http/gerrit';
|
import { setBaseUrl } from '../../../util/http/gerrit';
|
||||||
import type { FindPRConfig } from '../types';
|
import type { FindPRConfig } from '../types';
|
||||||
import { client } from './client';
|
import { client } from './client';
|
||||||
import {
|
import type {
|
||||||
type GerritChange,
|
GerritChange,
|
||||||
type GerritChangeMessageInfo,
|
GerritChangeMessageInfo,
|
||||||
type GerritFindPRConfig,
|
GerritFindPRConfig,
|
||||||
type GerritMergeableInfo,
|
GerritMergeableInfo,
|
||||||
} from './types';
|
} from './types';
|
||||||
|
|
||||||
const gerritEndpointUrl = 'https://dev.gerrit.com/renovate/';
|
const gerritEndpointUrl = 'https://dev.gerrit.com/renovate/';
|
||||||
|
|
Loading…
Reference in a new issue