pddl-workspace
Version:
8 lines (7 loc) • 328 B
TypeScript
import { PlannerRunConfiguration } from "./PlannerProvider";
/** PlannerExecutable run configuration. */
export interface PlannerExecutableRunConfiguration extends PlannerRunConfiguration {
/** @deprecated use the syntax in the PlannerConfiguration */
plannerSyntax?: string | undefined;
workingDirectory: string;
}