UNPKG

@foal/cli

Version:

CLI tool for FoalTS

13 lines (12 loc) 391 B
/** * Service for utility functions. */ export declare class UtilService { /** * Parse command line arguments from argv array. * * @param {string[]} argv - The command line arguments array (typically process.argv) * @returns {Record<string, any>} An object containing the parsed arguments */ getCommandLineArguments(argv: string[]): Record<string, any>; }