UNPKG

singularci

Version:

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

15 lines 432 B
import Task from '../interfaces/Task'; import IRun from '../interfaces/IRun'; import { TaskType } from './TaskEnum'; export default class RunFactory { createRunTask(commands: string[]): Run; } declare class Run implements Task, IRun { private commands; type: TaskType; constructor(commands: string[]); getCommands(): string[]; getType(): TaskType; } export {}; //# sourceMappingURL=Run.d.ts.map