Skip to content

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

  • readonly index?: number — Zero-based position of the failing item in the input collection.

Released under the MIT License.