IndexedMicro509Error
Like Micro509Error but includes a positional index for collection-processing APIs.
ts
interface IndexedMicro509Error<TCode extends string, TDetails> extends Micro509Error<TCode, TDetails> {
readonly index?: number;
}Properties
readonlyindex?:number— Zero-based position of the failing item in the input collection.