Interface ASN1Data

ASN.1 data object definition

Example

let d: ASN1Data = { t: "int", v: "1234" };
interface ASN1Data {
    t: string;
    v: any;
}

Properties

t v

Properties

t: string
v: any