Interface Process

interface Process {
    config: {
        icon?: string;
        name: string;
        targetVer: string;
        type: "process";
    };
    run: ((process) => Promise<any>);
}

Hierarchy (view full)

Properties

Properties

config: {
    icon?: string;
    name: string;
    targetVer: string;
    type: "process";
}

Type declaration

  • Optional icon?: string
  • name: string
  • targetVer: string
  • type: "process"
run: ((process) => Promise<any>)

Type declaration

    • (process): Promise<any>
    • Parameters

      Returns Promise<any>

Generated using TypeDoc