UNPKG

singularci

Version:

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

8 lines (7 loc) 172 B
export default interface ITrigger { addType(type:string):void; addBranch(branch:string):void; getTypes():string[]; getBranches():string[]; reset():void; }