@sap/cli-core
Version:
Command-Line Interface (CLI) Core Module
9 lines (8 loc) • 562 B
TypeScript
import { AuthenticationMethod } from "../../constants.js";
export declare const getBooleanOption: (value: unknown) => boolean;
export declare const replaceLeadingTrailingSingleQuotes: (value: string) => string;
export declare const parseOption: (value: string) => string;
export declare const setAuthenticationMethod: (authenticationMethod: AuthenticationMethod) => void;
export declare const getAuthenticationMethod: () => AuthenticationMethod;
export declare const setTargetHost: (targetHost: string) => void;
export declare const getTargetHost: () => string;