SYMBOL INDEX (322 symbols across 129 files) FILE: lib/arguments/encoding-option.js constant TEXT_ENCODINGS (line 18) | const TEXT_ENCODINGS = new Set(['utf8', 'utf16le']); constant BINARY_ENCODINGS (line 19) | const BINARY_ENCODINGS = new Set(['buffer', 'hex', 'base64', 'base64url'... constant ENCODINGS (line 20) | const ENCODINGS = new Set([...TEXT_ENCODINGS, ...BINARY_ENCODINGS]); constant ENCODING_ALIASES (line 41) | const ENCODING_ALIASES = { FILE: lib/arguments/escape.js constant SPECIAL_CHAR_REGEXP (line 57) | const SPECIAL_CHAR_REGEXP = getSpecialCharRegExp(); constant COMMON_ESCAPES (line 61) | const COMMON_ESCAPES = { constant ASTRAL_START (line 71) | const ASTRAL_START = 65_535; constant NO_ESCAPE_REGEXP (line 88) | const NO_ESCAPE_REGEXP = /^[\w./-]+$/; FILE: lib/arguments/fd-options.js constant SUBPROCESS_OPTIONS (line 32) | const SUBPROCESS_OPTIONS = new WeakMap(); FILE: lib/arguments/specific.js constant FD_REGEXP (line 88) | const FD_REGEXP = /^fd(\d+)$/; constant DEFAULT_OPTIONS (line 97) | const DEFAULT_OPTIONS = { constant FD_SPECIFIC_OPTIONS (line 106) | const FD_SPECIFIC_OPTIONS = ['lines', 'buffer', 'maxBuffer', 'verbose', ... FILE: lib/convert/readable.js method read (line 66) | read() { FILE: lib/io/iterate.js constant DEFAULT_OBJECT_HIGH_WATER_MARK (line 77) | const DEFAULT_OBJECT_HIGH_WATER_MARK = getDefaultHighWaterMark(true); constant HIGH_WATER_MARK (line 83) | const HIGH_WATER_MARK = DEFAULT_OBJECT_HIGH_WATER_MARK; FILE: lib/io/output-async.js constant SUBPROCESS_STREAM_PROPERTIES (line 51) | const SUBPROCESS_STREAM_PROPERTIES = ['stdin', 'stdout', 'stderr']; constant MAX_LISTENERS_INCREMENT (line 80) | const MAX_LISTENERS_INCREMENT = 2; FILE: lib/ipc/forward.js constant IPC_EMITTERS (line 27) | const IPC_EMITTERS = new WeakMap(); FILE: lib/ipc/graceful.js constant GRACEFUL_CANCEL_TYPE (line 64) | const GRACEFUL_CANCEL_TYPE = 'execa:ipc:cancel'; FILE: lib/ipc/incoming.js constant INCOMING_MESSAGES (line 79) | const INCOMING_MESSAGES = new WeakMap(); FILE: lib/ipc/outgoing.js constant OUTGOING_MESSAGES (line 37) | const OUTGOING_MESSAGES = new WeakMap(); FILE: lib/ipc/send.js constant PROCESS_SEND_METHODS (line 91) | const PROCESS_SEND_METHODS = new WeakMap(); FILE: lib/ipc/strict.js constant STRICT_RESPONSES (line 104) | const STRICT_RESPONSES = {}; constant REQUEST_TYPE (line 112) | const REQUEST_TYPE = 'execa:ipc:request'; constant RESPONSE_TYPE (line 113) | const RESPONSE_TYPE = 'execa:ipc:response'; FILE: lib/ipc/validation.js constant SERIALIZATION_ERROR_CODES (line 79) | const SERIALIZATION_ERROR_CODES = new Set([ constant SERIALIZATION_ERROR_MESSAGES (line 87) | const SERIALIZATION_ERROR_MESSAGES = [ FILE: lib/methods/bind.js constant DEEP_OPTIONS (line 25) | const DEEP_OPTIONS = new Set(['env', ...FD_SPECIFIC_OPTIONS]); FILE: lib/methods/command.js constant SPACES_REGEXP (line 43) | const SPACES_REGEXP = / +/g; FILE: lib/methods/template.js constant DELIMITERS (line 98) | const DELIMITERS = new Set([' ', '\t', '\r', '\n']); constant ESCAPE_LENGTH (line 103) | const ESCAPE_LENGTH = {x: 3, u: 5}; FILE: lib/pipe/streaming.js constant MERGED_STREAMS (line 44) | const MERGED_STREAMS = new WeakMap(); constant SOURCE_LISTENERS_PER_PIPE (line 48) | const SOURCE_LISTENERS_PER_PIPE = 2; constant DESTINATION_LISTENERS_PER_PIPE (line 51) | const DESTINATION_LISTENERS_PER_PIPE = 1; FILE: lib/pipe/throw.js constant PIPE_COMMAND_MESSAGE (line 58) | const PIPE_COMMAND_MESSAGE = 'source.pipe(destination)'; FILE: lib/return/early-error.js method read (line 56) | read() {} method write (line 57) | write() {} method read (line 58) | read() {} method write (line 58) | write() {} FILE: lib/return/final-error.js class DiscardedError (line 10) | class DiscardedError extends Error {} class ExecaError (line 36) | class ExecaError extends Error {} class ExecaSyncError (line 39) | class ExecaSyncError extends Error {} FILE: lib/stdio/direction.js constant KNOWN_DIRECTIONS (line 26) | const KNOWN_DIRECTIONS = ['input', 'output', 'output']; method nodeStream (line 41) | nodeStream(value) { method native (line 50) | native(value) { constant DEFAULT_DIRECTION (line 76) | const DEFAULT_DIRECTION = 'output'; FILE: lib/stdio/handle-async.js method webTransform (line 22) | webTransform({value: {transform, writableObjectMode, readableObjectMode}... method native (line 28) | native() {} FILE: lib/stdio/handle-sync.js method generator (line 28) | generator() {} FILE: lib/stdio/handle.js constant INVALID_STDIO_ARRAY_OPTIONS (line 100) | const INVALID_STDIO_ARRAY_OPTIONS = new Set(['ignore', 'ipc']); FILE: lib/stdio/type.js constant FILE_PATH_KEYS (line 130) | const FILE_PATH_KEYS = new Set(['file', 'append']); constant KNOWN_STDIO_STRINGS (line 136) | const KNOWN_STDIO_STRINGS = new Set(['ipc', 'ignore', 'inherit', 'overla... constant TRANSFORM_TYPES (line 148) | const TRANSFORM_TYPES = new Set(['generator', 'asyncGenerator', 'duplex'... constant FILE_TYPES (line 150) | const FILE_TYPES = new Set(['fileUrl', 'filePath', 'fileNumber']); constant SPECIAL_DUPLICATE_TYPES_SYNC (line 152) | const SPECIAL_DUPLICATE_TYPES_SYNC = new Set(['fileUrl', 'filePath']); constant SPECIAL_DUPLICATE_TYPES (line 153) | const SPECIAL_DUPLICATE_TYPES = new Set([...SPECIAL_DUPLICATE_TYPES_SYNC... constant FORBID_DUPLICATE_TYPES (line 155) | const FORBID_DUPLICATE_TYPES = new Set(['webTransform', 'duplex']); constant TYPE_TO_MESSAGE (line 158) | const TYPE_TO_MESSAGE = { FILE: lib/terminate/kill.js constant DEFAULT_FORCE_KILL_TIMEOUT (line 22) | const DEFAULT_FORCE_KILL_TIMEOUT = 1000 * 5; FILE: lib/transform/generator.js method transform (line 63) | transform(chunk, encoding, done) { method flush (line 66) | flush(done) { FILE: lib/utils/standard-stream.js constant STANDARD_STREAMS (line 4) | const STANDARD_STREAMS = [process.stdin, process.stdout, process.stderr]; constant STANDARD_STREAMS_ALIASES (line 5) | const STANDARD_STREAMS_ALIASES = ['stdin', 'stdout', 'stderr']; FILE: lib/verbose/default.js constant ICONS (line 38) | const ICONS = { constant COLORS (line 48) | const COLORS = { FILE: lib/verbose/info.js constant COMMAND_ID (line 22) | let COMMAND_ID = 0n; FILE: lib/verbose/log.js constant TAB_SIZE (line 54) | const TAB_SIZE = 2; FILE: lib/verbose/output.js constant PIPED_STDIO_VALUES (line 24) | const PIPED_STDIO_VALUES = new Set(['pipe', 'overlapped']); FILE: lib/verbose/values.js constant VERBOSE_VALUES (line 33) | const VERBOSE_VALUES = ['none', 'short', 'full']; FILE: test-d/arguments/env.test-d.ts type NodeEnv (line 5) | type NodeEnv = 'production' | 'development' | 'test'; type ProcessEnv (line 14) | interface ProcessEnv { FILE: test-d/ipc/get-one.test-d.ts method filter (line 45) | filter(message: Message<'advanced'>) {} method filter (line 57) | filter(message: Message) {} FILE: test-d/pipe.test-d.ts type BufferExecaReturnValue (line 19) | type BufferExecaReturnValue = typeof bufferResult; type EmptyExecaReturnValue (line 20) | type EmptyExecaReturnValue = Result<{}>; type ShortcutExecaReturnValue (line 21) | type ShortcutExecaReturnValue = Result; FILE: test-d/return/result-main.test-d.ts type AnyChunk (line 12) | type AnyChunk = string | Uint8Array | string[] | unknown[] | undefined; FILE: test-d/stdio/option/final-async-full.test-d.ts method transform (line 12) | async * transform(line: unknown) { method final (line 15) | async * final() { FILE: test-d/stdio/option/final-invalid-full.test-d.ts method transform (line 12) | * transform(line: string) { method final (line 15) | * final() { FILE: test-d/stdio/option/final-object-full.test-d.ts method transform (line 12) | * transform(line: unknown) { method final (line 15) | * final() { FILE: test-d/stdio/option/final-unknown-full.test-d.ts method transform (line 12) | * transform(line: unknown) { method final (line 15) | * final() { FILE: test-d/stdio/option/generator-async-full.test-d.ts method transform (line 12) | async * transform(line: unknown) { FILE: test-d/stdio/option/generator-binary-invalid.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/stdio/option/generator-binary.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/stdio/option/generator-boolean-full.test-d.ts method transform (line 12) | * transform(line: boolean) { FILE: test-d/stdio/option/generator-invalid-full.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/stdio/option/generator-object-full.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/stdio/option/generator-object-mode-invalid.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/stdio/option/generator-object-mode.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/stdio/option/generator-only-final.test-d.ts method final (line 12) | * final() { FILE: test-d/stdio/option/generator-preserve-invalid.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/stdio/option/generator-preserve.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/stdio/option/generator-string-full.test-d.ts method transform (line 12) | * transform(line: string) { FILE: test-d/stdio/option/generator-unknown-full.test-d.ts method transform (line 12) | * transform(line: unknown) { FILE: test-d/verbose.test-d.ts method verbose (line 69) | verbose(verboseLine: string, verboseObject: VerboseObject) { method verbose (line 84) | verbose(verboseLine: string, verboseObject: SyncVerboseObject) { FILE: test/arguments/encoding-option.js constant UNKNOWN_ENCODING_MESSAGE (line 14) | const UNKNOWN_ENCODING_MESSAGE = 'Please rename it to one of'; FILE: test/arguments/escape-no-icu.js method constructor (line 4) | constructor(regExpString, flags) { FILE: test/arguments/local.js constant ENOENT_REGEXP (line 12) | const ENOENT_REGEXP = isWindows ? /failed with exit code 1/ : /spawn.* E... constant BIN_DIR_REGEXP (line 21) | const BIN_DIR_REGEXP = /node_modules[\\/]\.bin/; FILE: test/fixtures/ipc-get-filter-throw.js method filter (line 6) | filter() { FILE: test/fixtures/nested/custom-object-stdout.js method transform (line 6) | * transform() { FILE: test/fixtures/nested/custom-print-function.js method [fdNumber] (line 3) | [fdNumber](verboseLine, verboseObject) { FILE: test/fixtures/nested/custom-print-multiple.js method [fdNumber] (line 3) | [fdNumber](verboseLine, verboseObject) { method [secondFdNumber] (line 8) | [secondFdNumber]() {} FILE: test/fixtures/nested/custom-return.js method verbose (line 2) | verbose(verboseLine, {type}) { FILE: test/fixtures/nested/custom-throw.js method verbose (line 2) | verbose(verboseLine, verboseObject) { FILE: test/fixtures/nested/custom-uppercase.js method verbose (line 2) | verbose(verboseLine, {type}) { FILE: test/helpers/file-path.js method toString (line 9) | toString() { method length (line 12) | get length() { FILE: test/helpers/fixtures-directory.js method onError (line 9) | onError(error, event) { constant PATH_KEY (line 16) | const PATH_KEY = pathKey(); constant FIXTURES_DIRECTORY_URL (line 17) | const FIXTURES_DIRECTORY_URL = new URL('../fixtures/', import.meta.url); constant FIXTURES_DIRECTORY (line 19) | const FIXTURES_DIRECTORY = path.resolve(fileURLToPath(FIXTURES_DIRECTORY... FILE: test/helpers/max-buffer.js constant STREAM_NAMES (line 12) | const STREAM_NAMES = ['stdin', 'stdout', 'stderr', 'stdio[3]']; FILE: test/helpers/nested.js constant WORKER_URL (line 6) | const WORKER_URL = new URL('worker.js', FIXTURES_DIRECTORY_URL); constant NESTED_URL (line 7) | const NESTED_URL = new URL('nested/', FIXTURES_DIRECTORY_URL); FILE: test/helpers/override-promise.js method then (line 4) | then() { // eslint-disable-line unicorn/no-thenable function restorePromise (line 9) | function restorePromise() { FILE: test/helpers/parallel.js constant PARALLEL_COUNT (line 3) | const PARALLEL_COUNT = isInCi ? 10 : 100; FILE: test/helpers/stdio.js constant STANDARD_STREAMS (line 19) | const STANDARD_STREAMS = [process.stdin, process.stdout, process.stderr]; FILE: test/helpers/stream.js method read (line 9) | read() {} method write (line 10) | write() {} FILE: test/helpers/verbose.js constant QUOTE (line 8) | const QUOTE = isWindows ? '"' : '\''; FILE: test/io/max-buffer.js constant MAX_BUFFER_DEFAULT (line 91) | const MAX_BUFFER_DEFAULT = 1e8; FILE: test/ipc/get-one.js method filter (line 32) | filter() { FILE: test/ipc/ipc-input.js method ipcInput (line 30) | ipcInput() {} FILE: test/ipc/send.js constant BIG_PAYLOAD_SIZE (line 50) | const BIG_PAYLOAD_SIZE = '.'.repeat(1e6); FILE: test/ipc/validation.js constant INVALID_TYPE_MESSAGE (line 62) | const INVALID_TYPE_MESSAGE = 'The "message" argument must be one of type... constant UNDEFINED_MESSAGE (line 63) | const UNDEFINED_MESSAGE = 'The "message" argument must be specified'; constant CLONE_MESSAGE (line 64) | const CLONE_MESSAGE = 'could not be cloned'; constant CYCLE_MESSAGE (line 65) | const CYCLE_MESSAGE = 'Converting circular structure to JSON'; constant MAX_CALL_STACK_MESSAGE (line 66) | const MAX_CALL_STACK_MESSAGE = 'Maximum call stack size exceeded'; FILE: test/methods/bind.js constant NOOP_PATH (line 15) | const NOOP_PATH = path.join(FIXTURES_DIRECTORY, 'noop.js'); constant PRINT_ENV_PATH (line 16) | const PRINT_ENV_PATH = path.join(FIXTURES_DIRECTORY, 'environment.js'); FILE: test/methods/command.js constant STDIN_FIXTURE (line 20) | const STDIN_FIXTURE = path.join(FIXTURES_DIRECTORY, 'stdin.js'); constant ECHO_FIXTURE_URL (line 21) | const ECHO_FIXTURE_URL = new URL('echo.js', FIXTURES_DIRECTORY_URL); FILE: test/methods/create.js constant NOOP_PATH (line 14) | const NOOP_PATH = path.join(FIXTURES_DIRECTORY, 'noop.js'); FILE: test/methods/node.js constant TEST_NODE_VERSION (line 86) | const TEST_NODE_VERSION = '16.0.0'; constant NO_SEND_MESSAGE (line 258) | const NO_SEND_MESSAGE = 'sendMessage() can only be used'; constant NO_IPC_MESSAGE (line 277) | const NO_IPC_MESSAGE = /The "ipc: true" option cannot be used/; FILE: test/methods/parameters-options.js constant NOOP_PATH (line 15) | const NOOP_PATH = path.join(FIXTURES_DIRECTORY, 'noop.js'); FILE: test/pipe/streaming.js method transform (line 207) | * transform() { method transform (line 218) | * transform([chunk]) { FILE: test/return/early-error.js constant ENOENT_REGEXP (line 18) | const ENOENT_REGEXP = isWindows ? /failed with exit code 1/ : /spawn.* E... FILE: test/stdio/duplicate.js method write (line 77) | write(chunk, encoding, done) { FILE: test/stdio/lines-main.js method stdout (line 89) | * stdout(line) { FILE: test/stdio/lines-mixed.js method write (line 38) | write(line, encoding, done) { FILE: test/stdio/node-stream-custom.js method destroy (line 82) | destroy(destroyError, done) { FILE: test/stdio/web-stream.js method write (line 22) | write(chunk) { method close (line 49) | async close() { method start (line 65) | start(controller) { method start (line 80) | start(controller) { FILE: test/terminate/graceful.js class AbortError (line 60) | class AbortError extends Error { FILE: test/terminate/signal.js constant VALIDATION_MESSAGES (line 7) | const VALIDATION_MESSAGES = { FILE: test/terminate/timeout.js constant INVALID_TIMEOUT_REGEXP (line 41) | const INVALID_TIMEOUT_REGEXP = /`timeout` option to be a non-negative in... FILE: test/transform/encoding-final.js constant STRING_TO_ENCODE (line 44) | const STRING_TO_ENCODE = '\u1000.'; constant BUFFER_TO_ENCODE (line 45) | const BUFFER_TO_ENCODE = Buffer.from(STRING_TO_ENCODE); FILE: test/transform/encoding-transform.js method transform (line 17) | * transform(line) { FILE: types/arguments/encoding-option.d.ts type DefaultEncodingOption (line 1) | type DefaultEncodingOption = 'utf8'; type TextEncodingOption (line 2) | type TextEncodingOption = type BufferEncodingOption (line 6) | type BufferEncodingOption = 'buffer'; type BinaryEncodingOption (line 7) | type BinaryEncodingOption = type EncodingOption (line 16) | type EncodingOption = FILE: types/arguments/fd-options.d.ts type FileDescriptorOption (line 1) | type FileDescriptorOption = `fd${number}`; type FromOption (line 5) | type FromOption = 'stdout' | 'stderr' | 'all' | FileDescriptorOption; type ToOption (line 8) | type ToOption = 'stdin' | FileDescriptorOption; FILE: types/arguments/options.d.ts type CommonOptions (line 10) | type CommonOptions = { type Options (line 378) | type Options = CommonOptions; type SyncOptions (line 395) | type SyncOptions = CommonOptions; type StricterOptions (line 397) | type StricterOptions< FILE: types/arguments/specific.d.ts type FdGenericOption (line 4) | type FdGenericOption = OptionType | GenericOptionObject = { type GenericFromOption (line 10) | type GenericFromOption = FromOption | 'ipc'; type FdSpecificOption (line 13) | type FdSpecificOption< type FdSpecificObjectOption (line 20) | type FdSpecificObjectOption< type FdNumberToFromOption (line 29) | type FdNumberToFromOption< FILE: types/convert.d.ts type ReadableOptions (line 6) | type ReadableOptions = { type WritableOptions (line 36) | type WritableOptions = { type DuplexOptions (line 46) | type DuplexOptions = ReadableOptions & WritableOptions; type SubprocessAsyncIterable (line 49) | type SubprocessAsyncIterable< FILE: types/ipc.d.ts type AdvancedMessage (line 4) | type AdvancedMessage = type JsonMessage (line 12) | type JsonMessage = type Message (line 25) | type Message< type SendMessageOptions (line 32) | type SendMessageOptions = { type GetOneMessageOptions (line 52) | type GetOneMessageOptions< type GetEachMessageOptions (line 78) | type GetEachMessageOptions = { type IpcMethods (line 102) | type IpcMethods< type HasIpc (line 138) | type HasIpc = HasIpcOption< type HasIpcOption (line 144) | type HasIpcOption< FILE: types/methods/command.d.ts type ExecaCommandMethod (line 32) | type ExecaCommandMethod = type ExecaCommandBind (line 38) | type ExecaCommandBind = type ExecaCommandTemplate (line 43) | type ExecaCommandTemplate = type ExecaCommandArray (line 48) | type ExecaCommandArray = type ExecaCommandSyncMethod (line 76) | type ExecaCommandSyncMethod = type ExecaCommandSyncBind (line 82) | type ExecaCommandSyncBind = type ExecaCommandSyncTemplate (line 87) | type ExecaCommandSyncTemplate = type ExecaCommandSyncArray (line 92) | type ExecaCommandSyncArray = FILE: types/methods/main-async.d.ts type ExecaMethod (line 355) | type ExecaMethod = type ExecaBind (line 362) | type ExecaBind = type ExecaTemplate (line 367) | type ExecaTemplate = type ExecaArrayLong (line 372) | type ExecaArrayLong = type ExecaArrayShort (line 377) | type ExecaArrayShort = FILE: types/methods/main-sync.d.ts type ExecaSyncMethod (line 35) | type ExecaSyncMethod = type ExecaSyncBind (line 42) | type ExecaSyncBind = type ExecaSyncTemplate (line 47) | type ExecaSyncTemplate = type ExecaSyncArrayLong (line 52) | type ExecaSyncArrayLong = type ExecaSyncArrayShort (line 57) | type ExecaSyncArrayShort = FILE: types/methods/node.d.ts type ExecaNodeMethod (line 38) | type ExecaNodeMethod = type ExecaNodeBind (line 45) | type ExecaNodeBind = type ExecaNodeTemplate (line 50) | type ExecaNodeTemplate = type ExecaNodeArrayLong (line 55) | type ExecaNodeArrayLong = type ExecaNodeArrayShort (line 60) | type ExecaNodeArrayShort = FILE: types/methods/script.d.ts type ExecaScriptMethod (line 58) | type ExecaScriptMethod = type ExecaScriptBind (line 67) | type ExecaScriptBind = type ExecaScriptTemplate (line 72) | type ExecaScriptTemplate = type ExecaScriptArrayLong (line 77) | type ExecaScriptArrayLong = type ExecaScriptArrayShort (line 82) | type ExecaScriptArrayShort = type ExecaScriptSyncMethod (line 91) | type ExecaScriptSyncMethod = type ExecaScriptSyncTemplate (line 103) | type ExecaScriptSyncTemplate = type ExecaScriptSyncArrayLong (line 108) | type ExecaScriptSyncArrayLong = type ExecaScriptSyncArrayShort (line 113) | type ExecaScriptSyncArrayShort = FILE: types/methods/template.d.ts type TemplateExpressionItem (line 3) | type TemplateExpressionItem = type TemplateExpression (line 12) | type TemplateExpression = TemplateExpressionItem | readonly TemplateExpr... type TemplateString (line 15) | type TemplateString = readonly [TemplateStringsArray, ...readonly Templa... type SimpleTemplateString (line 18) | type SimpleTemplateString = readonly [TemplateStringsArray, string?]; FILE: types/pipe.d.ts type PipeOptions (line 8) | type PipeOptions = { type PipableSubprocess (line 28) | type PipableSubprocess = { FILE: types/return/final-error.d.ts type CommonErrorProperty (line 15) | type CommonErrorProperty< type ErrorProperties (line 22) | type ErrorProperties = class ExecaError (line 38) | class ExecaError extends CommonEr... class ExecaSyncError (line 49) | class ExecaSyncError exte... FILE: types/return/ignore.d.ts type IgnoresResultOutput (line 8) | type IgnoresResultOutput< type IgnoresSubprocessOutput (line 18) | type IgnoresSubprocessOutput< type IgnoresOutput (line 23) | type IgnoresOutput< FILE: types/return/result-all.d.ts type ResultAll (line 8) | type ResultAll = type ResultAllProperty (line 11) | type ResultAllProperty< type AllMainFd (line 23) | type AllMainFd = type AllObjectFd (line 26) | type AllObjectFd = type AllLinesFd (line 29) | type AllLinesFd = FILE: types/return/result-ipc.d.ts type ResultIpcOutput (line 8) | type ResultIpcOutput< type ResultIpcAsync (line 19) | type ResultIpcAsync< FILE: types/return/result-stdio.d.ts type ResultStdioArray (line 6) | type ResultStdioArray = type MapResultStdio (line 9) | type MapResultStdio< FILE: types/return/result-stdout.d.ts type ResultStdioNotAll (line 8) | type ResultStdioNotAll< type ResultStdio (line 14) | type ResultStdio< type ResultStdioProperty (line 26) | type ResultStdioProperty< type ResultStdioItem (line 39) | type ResultStdioItem< FILE: types/return/result.d.ts type SuccessResult (line 182) | type SuccessResult< type OmitErrorIfReject (line 187) | type OmitErrorIfReject = { type Result (line 196) | type Result = SuccessResult = Success... FILE: types/stdio/array.d.ts type StdioOptionNormalizedArray (line 5) | type StdioOptionNormalizedArray = Std... type StdioOptionNormalized (line 7) | type StdioOptionNormalized =... type DefaultStdioOption (line 16) | type DefaultStdioOption = readonly ['pipe', 'pipe', 'pipe']; FILE: types/stdio/direction.d.ts type IsInputFd (line 7) | type IsInputFd< FILE: types/stdio/option.d.ts type FdStdioOption (line 6) | type FdStdioOption< type FdStdioOptionProperty (line 11) | type FdStdioOptionProperty< type FdStdioArrayOption (line 24) | type FdStdioArrayOption< type FdStdioArrayOptionProperty (line 29) | type FdStdioArrayOptionProperty< FILE: types/stdio/type.d.ts type IsStandardStream (line 17) | type IsStandardStream = FdNumber extends keyof ... type StandardStreams (line 19) | type StandardStreams = readonly ['stdin', 'stdout', 'stderr']; type NoStreamStdioOption (line 22) | type NoStreamStdioOption = type SimpleStdioOption (line 33) | type SimpleStdioOption< type CommonStdioOption (line 45) | type CommonStdioOption< type IterableObject (line 60) | type IterableObject = Iterable type ProcessStdinFd (line 67) | type ProcessStdinFd = {readonly fd?: 0}; type ProcessStdoutStderrFd (line 68) | type ProcessStdoutStderrFd = {readonly fd?: 1 | 2}; type InputStdioOption (line 71) | type InputStdioOption< type OutputStdioOption (line 82) | type OutputStdioOption< type StdinSingleOption (line 92) | type StdinSingleOption< type StdinOptionCommon (line 101) | type StdinOptionCommon< type StdinOption (line 109) | type StdinOption = StdinOptionCommon; type StdinSyncOption (line 111) | type StdinSyncOption = StdinOptionCommon; type StdoutStderrSingleOption (line 114) | type StdoutStderrSingleOption< type StdoutStderrOptionCommon (line 123) | type StdoutStderrOptionCommon< type StdoutStderrOption (line 131) | type StdoutStderrOption = StdoutStderrOptionCommon; type StdoutStderrSyncOption (line 133) | type StdoutStderrSyncOption = StdoutStderrOptionCommon; type StdioExtraOptionCommon (line 136) | type StdioExtraOptionCommon = type StdioSingleOption (line 141) | type StdioSingleOption< type StdioSingleOptionItems (line 150) | type StdioSingleOptionItems = StdioOptionType extends r... type StdioOptionCommon (line 155) | type StdioOptionCommon = type StdioOptionsArray (line 160) | type StdioOptionsArray = readonly [ type StdioOptionsProperty (line 168) | type StdioOptionsProperty = FILE: types/subprocess/all.d.ts type SubprocessAll (line 6) | type SubprocessAll = AllStream = IsIgnored extends true ? undefined : Readable; type AllIgnored (line 10) | type AllIgnored< FILE: types/subprocess/stdio.d.ts type SubprocessStdioArray (line 6) | type SubprocessStdioArray = MapStdioStreams... type MapStdioStreams (line 9) | type MapStdioStreams< FILE: types/subprocess/stdout.d.ts type SubprocessStdioStream (line 7) | type SubprocessStdioStream< type SubprocessStream (line 12) | type SubprocessStream< type InputOutputStream (line 20) | type InputOutputStream = IsInput extends true FILE: types/subprocess/subprocess.d.ts type ExecaCustomSubprocess (line 18) | type ExecaCustomSubprocess = { type Subprocess (line 106) | type Subprocess = type ResultPromise (line 115) | type ResultPromise = FILE: types/transform/normalize.d.ts type GeneratorTransform (line 8) | type GeneratorTransform = (chunk: unknown) => type GeneratorFinal (line 11) | type GeneratorFinal = () => type TransformCommon (line 15) | type TransformCommon = { type GeneratorTransformFull (line 27) | type GeneratorTransformFull = { type DuplexTransform (line 50) | type DuplexTransform = { type WebTransform (line 55) | type WebTransform = { FILE: types/transform/object-mode.d.ts type IsObjectFd (line 8) | type IsObjectFd< type IsObjectStdioOption (line 13) | type IsObjectStdioOption = IsObjectStdioSingleOption = StdioSingleOptio... type BooleanObjectMode (line 21) | type BooleanObjectMode = O... FILE: types/utils.d.ts type Not (line 1) | type Not = Value extends true ? false : true; type And (line 3) | type And = First extends ... type Or (line 5) | type Or = First extends t... type Unless (line 7) | type Unless = C... type AndUnless (line 9) | type AndUnless = true extends (T extends U ? true : false) ? true... FILE: types/verbose.d.ts type VerboseOption (line 5) | type VerboseOption = FdGenericOption< type VerboseFunction (line 12) | type VerboseFunction = (verboseLine: string, verboseObject: MinimalVerbo... type GenericVerboseObject (line 14) | type GenericVerboseObject = { type MinimalVerboseObject (line 60) | type MinimalVerboseObject = GenericVerboseObject & { type VerboseObject (line 69) | type VerboseObject = GenericVerboseObject & { type SyncVerboseObject (line 86) | type SyncVerboseObject = GenericVerboseObject & {