@mesh-tech/mesh-cli
Version:
CLI for Mesh platform development utilities
13 lines (12 loc) • 631 B
TypeScript
import { type CommonOpts } from "./common.js";
export declare function draftsListCommand(repo: string, opts: CommonOpts & {
all?: boolean;
}): Promise<void>;
export declare function draftsShowCommand(repo: string, draftId: string, opts: CommonOpts): Promise<void>;
export declare function draftsCreateCommand(repo: string, opts: CommonOpts & {
title?: string;
}): Promise<void>;
export declare function draftsSubmitCommand(repo: string, draftId: string, opts: CommonOpts & {
note?: string;
}): Promise<void>;
export declare function draftsDiscardCommand(repo: string, draftId: string, opts: CommonOpts): Promise<void>;