@apeleghq/cms-classes
Version:
A collection of utility classes to encode ASN.1 data following DER rules
8 lines • 337 B
text/typescript
import type { IAsn1Data } from '@apeleghq/asn1-der';
import { Asn1Sequence } from '@apeleghq/asn1-der';
import type ContentType from './ContentType.cjs';
declare class ContentInfo extends Asn1Sequence {
constructor(contentType: ContentType, content: IAsn1Data);
}
export default ContentInfo;
//# sourceMappingURL=ContentInfo.d.ts.map