@broadcom/endevor-bridge-for-git-rest-api
Version:
Endevor Bridge for Git Rest client
14 lines (13 loc) • 445 B
TypeScript
import { MappingAction } from "./MappingAction";
import { ApiResponse } from "../../../response/ApiResponse";
export declare class MigrateRepository extends MappingAction<ApiResponse, {
authProvider: string;
cloneUrl: string;
}> {
payload: {
authProvider: string;
cloneUrl: string;
};
customPath: string;
constructor(context: string, repository: string, newAuthProvider: string, newGitRepoUrl: string);
}