@ycmd/helpers
Version:
LSK.js CLI Creds is the easiest way to manage GitHub / Gitlab secrets and credentials
20 lines (17 loc) • 404 B
text/typescript
import { ILogger } from '@lsk4/log';
interface MainOptions {
configPath?: string;
config: Record<string, any>;
cmdName: string;
cmdVersion: string;
cmdPackage: any;
nodeBin: string;
ycmdBin: string;
log: ILogger;
cwd: string;
cwdInfo: Record<string, any>;
args: string[];
argv: Record<string, any>;
[key: string]: any;
}
export type { MainOptions };