Interface JobList

    Page of jobs + total count (ignores limit/offset) for pagination UIs.

    interface JobList {
        rows: JobRow[];
        total: number;
    }
    Index

    Properties

    Properties

    rows: JobRow[]
    total: number