Defines our current pipeline compilation status.

interface PipelineEntryStatus {
    compiling: boolean;
    compiled: boolean;
    error: string;
}

Properties

compiling: boolean

Whether the pipeline is currently compiling.

compiled: boolean

Whether the pipeline has been successfully compiled.

error: string

Whether there has been an error while compiling the pipeline, and the corresponding error.