UNPKG

@therealchristhomas/gitlab-mcp-server

Version:
11 lines (10 loc) 629 B
import type { GitLabLabelResponse } from "../types/index.js"; export declare function listLabels(projectId: string, page?: number, perPage?: number): Promise<GitLabLabelResponse[]>; export declare function createLabel(projectId: string, name: string, color: string, description?: string, priority?: number): Promise<GitLabLabelResponse>; export declare function updateLabel(projectId: string, name: string, options: { new_name?: string; color?: string; description?: string; priority?: number; }): Promise<GitLabLabelResponse>; export declare function deleteLabel(projectId: string, name: string): Promise<void>;