Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

19
node_modules/@yarnpkg/parsers/lib/shell.d.ts generated vendored Normal file
View File

@@ -0,0 +1,19 @@
import { Argument, ArgumentSegment, ArithmeticExpression, Command, CommandChain, CommandChainThen, CommandLine, CommandLineThen, EnvSegment, RedirectArgument, ShellLine, ValueArgument } from './grammars/shell';
export declare function parseShell(source: string, options?: {
isGlobPattern: (arg: string) => boolean;
}): ShellLine;
export declare function stringifyShellLine(shellLine: ShellLine, { endSemicolon }?: {
endSemicolon?: boolean;
}): string;
export declare function stringifyCommandLine(commandLine: CommandLine): string;
export declare function stringifyCommandLineThen(commandLineThen: CommandLineThen): string;
export declare function stringifyCommandChain(commandChain: CommandChain): string;
export declare function stringifyCommandChainThen(commandChainThen: CommandChainThen): string;
export declare function stringifyCommand(command: Command): string;
export declare function stringifyEnvSegment(envSegment: EnvSegment): string;
export declare function stringifyArgument(argument: Argument): string;
export declare function stringifyRedirectArgument(argument: RedirectArgument): string;
export declare function stringifyValueArgument(argument: ValueArgument): string;
export declare function stringifyArgumentSegment(argumentSegment: ArgumentSegment): string;
export declare function stringifyArithmeticExpression(argument: ArithmeticExpression): string;
export { stringifyShellLine as stringifyShell };