TenantAtlas/apps/platform/.pnpm-store/v10/files/28/c5c1a29a3a9a0fb98611d6ace99bf8b6d9517a350e7510e500a9b8f1175740e244f90e81408bfd898cfa924824419499bda19451da5028c7ff017eed88586e
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

18 lines
649 B
Plaintext

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;
}