UNPKG

@ycmd/creds

Version:

LSK.js CLI Creds is the easiest way to manage GitHub / Gitlab secrets and credentials

12 lines (9 loc) 284 B
import { Service } from '../services/Service.js'; import '@lsk4/log'; import 'axios'; import '../types.js'; type ServiceOptions = { force?: boolean; }; declare function createService(serviceDirname: string, options?: ServiceOptions): Promise<Service>; export { createService };