UNPKG

cloakx

Version:

Cloakx is a secure, lightweight CLI tool to manage your development secrets locally — no cloud, no hassle. Store, retrieve, and manage secrets across projects with encryption and ease. 🔐 Perfect for solo devs, indie hackers, and teams who value speed, si

8 lines (7 loc) 215 B
import { Command } from 'commander'; /** * Update a secret value by key. */ export declare function updateSecret(key: string, value: string): Promise<void>; declare const command: Command; export default command;