D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
re-viewers.com
/
node_modules
/
concurrently
/
dist
/
src
/
command-parser
/
Filename :
strip-quotes.d.ts
back
Copy
import { CommandInfo } from '../command'; import { CommandParser } from './command-parser'; /** * Strips quotes around commands so that they can run on the current shell. */ export declare class StripQuotes implements CommandParser { parse(commandInfo: CommandInfo): { command: string; name: string; env?: Record<string, unknown> | undefined; cwd?: string | undefined; prefixColor?: string | undefined; ipc?: number | undefined; raw?: boolean | undefined; }; }