projex
Version:
A command line to manage the workflow
13 lines (12 loc) • 353 B
TypeScript
export declare const renderTableOfCommits: ({ title, emptyMessage, listArray, }: {
title: string;
emptyMessage: string;
listArray: any;
}) => void;
export declare const renderTableOfReleaseVersions: ({ emptyMessage, listArray, }: {
emptyMessage: string;
listArray: {
text: string;
value: string;
}[];
}) => void;