@fancode/react-native-codepush-joystick
Version:
A flexible CodePush Joystick for React Native apps
22 lines • 618 B
JavaScript
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