UNPKG

sda

Version:

Software development assistant

9 lines (8 loc) 302 B
import { IEnvironment } from '../interfaces'; export interface IParsedCommand { id: string; cmd: string[]; cwd: string; timeout: number | undefined; } export default function getCommands(environment: IEnvironment, commandNames: string[], params?: string[][]): IParsedCommand[];