UNPKG

@sap/cli-core

Version:

Command-Line Interface (CLI) Core Module

11 lines (10 loc) 371 B
import { Secret } from "../../types.js"; export declare const isCustomClient: (clientId?: string) => boolean; export declare const getTenantUrl: () => string; export declare function updateUrls(secret: Secret): Promise<Secret>; export declare function isSecretConsistent(secret: Secret): { consistent: true; } | { consistent: false; errors: Array<string>; };