@mesh-tech/mesh-cli
Version:
CLI for Mesh platform development utilities
15 lines (14 loc) • 820 B
TypeScript
import { type CommonOpts } from "./common.js";
export declare function proposalsCommand(repo: string, opts: CommonOpts): Promise<void>;
export declare function showCommand(repo: string, id: string, opts: CommonOpts): Promise<void>;
export declare function diffCommand(repo: string, id: string, opts: CommonOpts): Promise<void>;
export declare function approveCommand(repo: string, id: string, opts: CommonOpts & {
sha?: string;
}): Promise<void>;
export declare function rejectCommand(repo: string, id: string, opts: CommonOpts & {
reason?: string;
}): Promise<void>;
export declare function commentCommand(repo: string, id: string, text: string, opts: CommonOpts): Promise<void>;
export declare function requestChangesCommand(repo: string, id: string, opts: CommonOpts & {
note?: string;
}): Promise<void>;