UNPKG

singularci

Version:

SingularCI is a DSL transpiler used to generate CI/CD configuration files for existing CI platforms

17 lines 599 B
import Task from '../interfaces/Task'; import ICheckout from './../interfaces/ICheckout'; import { TaskType } from './TaskEnum'; export default class CheckoutFactory { createCheckoutTask(repositoryURL: string, repositoryName: string): Checkout; } declare class Checkout implements Task, ICheckout { private repositoryURL; private repositoryName; type: TaskType; constructor(repositoryURL: string, repositoryName: string); getRepositoryURL(): string; getRepositoryName(): string; getType(): TaskType; } export {}; //# sourceMappingURL=Checkout.d.ts.map