UNPKG

@sap/cli-core

Version:

Command-Line Interface (CLI) Core Module

5 lines (4 loc) 233 B
import { KeyValuePair } from "../types.js"; export declare const get: () => Promise<KeyValuePair>; export declare const set: (key: string, value: string) => Promise<void>; export declare const remove: (key: string) => Promise<void>;