UNPKG

@fancode/react-native-codepush-joystick

Version:
22 lines 618 B
export class CustomCICDProvider { config; constructor(config) { this.config = config; } triggerBuild(params) { return this.config.triggerBuild(params); } getWorkflowRuns(branchName) { return this.config.getWorkflowRuns(branchName); } cancelBuild(buildId) { return this.config.cancelBuild(buildId); } findWorkflowStatus(workflowRun) { return this.config.findWorkflowStatus(workflowRun); } } export function createCustomCICDProvider(config) { return new CustomCICDProvider(config); } //# sourceMappingURL=custom-cicd-provider.js.map