D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
re-viewers.com
/
node_modules
/
concurrently
/
dist
/
src
/
command-parser
/
Filename :
expand-shortcut.d.ts
back
Copy
import { CommandInfo } from '../command'; import { CommandParser } from './command-parser'; /** * 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; }