/** * Copied from * The MIT License (MIT) * Copyright (c) 2015-21 Lloyd Brookes <75pound@gmail.com> */ declare const commandLineCommands: (commands: (string | null)[], argv: string[]) => { argv: string[]; command: string | null; }; export default commandLineCommands;