DecodedExtensionValue
A successfully decoded extension value paired with its OID and criticality.
ts
interface DecodedExtensionValue<TValue> {
readonly oid: string;
readonly critical: boolean;
readonly value: TValue;
}Properties
readonlyoid:string— Dotted-decimal OID of the decoded extension.readonlycritical:boolean— Whether the extension was marked critical in the certificate.readonlyvalue:TValue— Typed value produced by theExtensionDecoder.