VS Code API
    Preparing search index...

    Interface TaskProcessEndEvent

    An event signaling the end of a process execution triggered through a task

    interface TaskProcessEndEvent {
        execution: TaskExecution;
        exitCode: number | undefined;
    }
    Index

    Properties

    Properties

    execution: TaskExecution

    The task execution for which the process got started.

    exitCode: number | undefined

    The process's exit code. Will be undefined when the task is terminated.