UNPKG

@catladder/cli

Version:

Panter cli tool for cloud CI/CD and DevOps

10 lines (9 loc) 438 B
import type { Gitlab } from "@gitbeaker/core"; import { Err } from "ts-results-es"; export declare const SECURITY_AUDIT_FILE_NAME: "SECURITY.md"; export declare function createSecurityAuditMergeRequest({ projectId, mainBranch, userId, api, }: { projectId: string; mainBranch: string; userId: number; api: Gitlab; }): Promise<Err<string> | import("ts-results-es").Ok<import("@gitbeaker/core").ExpandedMergeRequestSchema>>;