blob: b8fa4fa2b5f8d81e257bda898ff6f6f7b28387a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
│ ├── package/dist/src/concurrently.d.ts
│ │ @@ -1,9 +1,7 @@
│ │ -/// <reference types="node" />
│ │ -/// <reference types="node" />
│ │ import { Writable } from 'stream';
│ │ import { CloseEvent, Command, CommandIdentifier, CommandInfo, KillProcess, SpawnCommand } from './command';
│ │ import { SuccessCondition } from './completion-listener';
│ │ import { FlowController } from './flow-control/flow-controller';
│ │ import { Logger } from './logger';
│ │ /**
│ │ * A command that is to be passed into `concurrently()`.
│ ├── package/dist/src/command-parser/expand-arguments.d.ts
│ │ @@ -5,14 +5,14 @@
│ │ */
│ │ export declare class ExpandArguments implements CommandParser {
│ │ private readonly additionalArguments;
│ │ constructor(additionalArguments: string[]);
│ │ parse(commandInfo: CommandInfo): {
│ │ command: string;
│ │ name: string;
│ │ - env?: Record<string, unknown> | undefined;
│ │ - cwd?: string | undefined;
│ │ - prefixColor?: string | undefined;
│ │ - ipc?: number | undefined;
│ │ - raw?: boolean | undefined;
│ │ + env?: Record<string, unknown>;
│ │ + cwd?: string;
│ │ + prefixColor?: string;
│ │ + ipc?: number;
│ │ + raw?: boolean;
│ │ };
│ │ }
|