UNPKG

@onboardbase/cli

Version:

[![Version](https://img.shields.io/npm/v/@onboardbase/cli.svg)](https://www.npmjs.com/package/@onboardbase/cli) [![Downloads/week](https://img.shields.io/npm/dw/@onboardbase/cli.svg)](https://www.npmjs.com/package/@onboardbase/cli) [![License](https://img

12 lines (11 loc) 638 B
import { Answers } from "../utils/commands"; export declare const saveCommands: ({ name, commandList, executor, description, projectName, mode }: Answers) => Promise<any>; export declare const getAllCommands: () => Promise<any>; export declare const deleteCommand: (commandId: string) => Promise<any>; export declare const getCommandProjectId: (name: string) => Promise<any>; export declare const getAllProjects: () => Promise<any>; export declare const saveProject: ({ name, description, }: { name: string; description: string; }) => Promise<any>; export declare const changeCommandVisibility: (command: string) => Promise<any>;