| 11 | import deepExtend from "deep-extend"; |
| 12 | |
| 13 | export interface CICDVariable { |
| 14 | type: "file" | "variable"; |
| 15 | environments: { |
| 16 | content: string; |
| 17 | regexp: RegExp; |
| 18 | regexpPriority: number; |
| 19 | scopePriority: number; |
| 20 | fileSource?: string; |
| 21 | }[]; |
| 22 | } |
| 23 | |
| 24 | export class VariablesFromFiles { |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected