Files
hydro-builder-app/node_modules/concurrently/dist/lib/command-parser/expand-shortcut.d.ts
2026-06-13 17:36:44 -07:00

18 lines
655 B
TypeScript

import { CommandInfo } from '../command.js';
import { CommandParser } from './command-parser.js';
/**
* Expands shortcuts according to the following table:
*
* | Syntax | Expands to |
* | --------------- | --------------------- |
* | `npm:<script>` | `npm run <script>` |
* | `pnpm:<script>` | `pnpm run <script>` |
* | `yarn:<script>` | `yarn run <script>` |
* | `bun:<script>` | `bun run <script>` |
* | `node:<script>` | `node --run <script>` |
* | `deno:<script>` | `deno task <script>` |
*/
export declare class ExpandShortcut implements CommandParser {
parse(commandInfo: CommandInfo): CommandInfo;
}