blob: 636018af5d0d2048bcf19359ac1ed49f23a56106 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { CommandInfo } from '../command';
import { CommandParser } from './command-parser';
/**
* Expands commands prefixed with `npm:`, `yarn:`, `pnpm:`, or `bun:` into the full version `npm run <command>` and so on.
*/
export declare class ExpandNpmShortcut implements CommandParser {
parse(commandInfo: CommandInfo): CommandInfo;
}
|