@sap/cli-core
Version:
Command-Line Interface (CLI) Core Module
18 lines (17 loc) • 779 B
TypeScript
import { AuthenticationMethod } from "./constants.js";
export { run } from "./dwc/run.js";
export { configure, getCommands } from "./module.js";
export { AuthenticationMethod };
export { getVersion, getBin, getDescription, getName, getPackageName, } from "./utils/utils.js";
export declare const configureCoreModule: ({ name, packageName, discoveryPaths, description, sapHelpLink, authenticationMethods, version, genericOptionsHelp, deprecated, deprecationMessage, }: {
name: string;
packageName: string;
discoveryPaths: Array<string>;
description: string;
sapHelpLink: string;
authenticationMethods?: Array<AuthenticationMethod>;
version: string;
genericOptionsHelp: string;
deprecated?: boolean;
deprecationMessage?: string;
}) => void;