@enclaved/encli
Version:
CLI utilities for working with enclaved application server for TEEs
18 lines (17 loc) • 407 B
TypeScript
/**
* Test command implementation
*/
import { Command } from 'commander';
/**
* Run a test command
* @param options Command options
* @returns Test result
*/
export declare function runTest(options?: {
verbose?: boolean;
}): string;
/**
* Register the test command with the CLI
* @param program Commander program instance
*/
export declare function registerTestCommand(program: Command): void;