│ ├── package/dist/src/concurrently.d.ts
│ │ @@ -1,9 +1,7 @@
│ │ -///
│ │ -///
│ │ 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 | undefined;
│ │ - cwd?: string | undefined;
│ │ - prefixColor?: string | undefined;
│ │ - ipc?: number | undefined;
│ │ - raw?: boolean | undefined;
│ │ + env?: Record;
│ │ + cwd?: string;
│ │ + prefixColor?: string;
│ │ + ipc?: number;
│ │ + raw?: boolean;
│ │ };
│ │ }