UNPKG

asn1-ts

Version:

ASN.1 encoding and decoding, including BER, CER, and DER.

8 lines (7 loc) 285 B
import type ASN1Element from "../asn1.mjs"; import ObjectIdentifier from "./ObjectIdentifier.mjs"; export default class TypeIdentifier<Element extends ASN1Element> { readonly id: ObjectIdentifier; readonly type: Element; constructor(id: ObjectIdentifier, type: Element); }