UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

7 lines (6 loc) 429 B
import type { Constructor } from 'type-fest'; import type { PlatformId } from '../../constants'; import type { PlatformScm } from './types'; export declare const platformScmImpls: Map<"azure" | "bitbucket" | "bitbucket-server" | "codecommit" | "gerrit" | "gitea" | "github" | "gitlab" | "local", Constructor<PlatformScm>>; export declare const scm: PlatformScm; export declare function setPlatformScmApi(name: PlatformId): void;