MCPcopy
hub / github.com/firecow/gitlab-ci-local / CICDVariable

Interface CICDVariable

src/variables-from-files.ts:13–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11import deepExtend from "deep-extend";
12
13export 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
24export class VariablesFromFiles {
25

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected