@enclaved/encli
Version:
CLI utilities for working with enclaved application server for TEEs
18 lines (17 loc) • 472 B
TypeScript
/**
* Login command implementation
*/
import { Command } from 'commander';
/**
* Run the login command
* @param options.bunkerUrl Optional bunker URL, without it nostrconnect flow will be used
* @returns void
*/
export declare function runLogin(options?: {
bunkerUrl?: string;
}): Promise<void>;
/**
* Register the login command with the CLI
* @param program Commander program instance
*/
export declare function registerLoginCommand(program: Command): void;