@musallam/photoshop-client
    Preparing search index...

    Interface PhotoshopJobStatus<TResult>

    interface PhotoshopJobStatus<TResult = unknown> {
        created?: string;
        error_code?: string;
        jobId?: string;
        message?: string;
        modified?: string;
        result?: TResult;
        status: "running" | "succeeded" | "failed" | "not_started";
    }

    Type Parameters

    • TResult = unknown
    Index

    Properties

    created?: string
    error_code?: string
    jobId?: string
    message?: string
    modified?: string
    result?: TResult
    status: "running" | "succeeded" | "failed" | "not_started"