@capgo/cli
Version:
A CLI to upload to capgo servers
8 lines (7 loc) • 363 B
TypeScript
export interface EnsurePublicKeyOptions {
interactive?: boolean;
silent?: boolean;
json?: boolean;
}
export declare function ensurePublicKeyInConfig(options?: EnsurePublicKeyOptions): Promise<void>;
export declare function ensurePublicKeyFromPrivateKey(privateKeyPem: string, options?: Pick<EnsurePublicKeyOptions, 'silent' | 'json'>): Promise<void>;