UNPKG

steadybit

Version:

Command-line interface to interact with the Steadybit API

7 lines (6 loc) 390 B
import { Profile } from './types'; export declare function addProfile(profile: Profile): Promise<void>; export declare function removeProfile(profileName: string): Promise<void>; export declare function getProfiles(): Promise<Profile[]>; export declare function getActiveProfile(): Promise<Profile | undefined>; export declare function setActiveProfile(profileName: string): Promise<void>;