UNPKG

@enclaved/encli

Version:

CLI utilities for working with enclaved application server for TEEs

17 lines (16 loc) 385 B
/** * Login command implementation */ import { Command } from 'commander'; /** * Run the logout command * @returns void */ export declare function runLogout(options?: { bunkerUrl?: string; }): Promise<void>; /** * Register the logout command with the CLI * @param program Commander program instance */ export declare function registerLogoutCommand(program: Command): void;