igcv3 - v1.1.0
    Preparing search index...

    Interface SortChainResult

    Result of chain sorting operation.

    interface SortChainResult {
        sorted: Certificate[];
        wasReordered: boolean;
        orphans: Certificate[];
        reorderLog: string[];
    }
    Index

    Properties

    sorted: Certificate[]

    Sorted certificates in correct chain order: [leaf, intermediate(s), root]

    wasReordered: boolean

    Whether any reordering was performed

    orphans: Certificate[]

    Certificates that couldn't be placed in the chain (orphans)

    reorderLog: string[]

    Human-readable description of reordering for logging