UNPKG

@apeleghq/cms-classes

Version:

A collection of utility classes to encode ASN.1 data following DER rules

10 lines 481 B
import type { Asn1OctetString } from '@apeleghq/asn1-der'; import { Asn1Sequence } from '@apeleghq/asn1-der'; import type ContentType from './ContentType.cjs'; declare class EncapsulatedContentInfo extends Asn1Sequence { eContentType_: ContentType; constructor(eContentType: ContentType, eContent?: Asn1OctetString); get eContentType(): Readonly<typeof this.eContentType_>; } export default EncapsulatedContentInfo; //# sourceMappingURL=EncapsulatedContentInfo.d.ts.map