ess-ts
Version:
Enhanced Security Services (ESS) in TypeScript
18 lines • 1.17 kB
TypeScript
import { ASN1Element as _Element, OPTIONAL, UTF8String } from "asn1-ts";
import * as $ from "asn1-ts/dist/node/functional";
import { ContentType } from "../CryptographicMessageSyntax2004/ContentType.ta";
export { ContentType, _decode_ContentType, _encode_ContentType, } from "../CryptographicMessageSyntax2004/ContentType.ta";
export declare class ContentHints {
readonly contentDescription: OPTIONAL<UTF8String>;
readonly contentType: ContentType;
constructor(contentDescription: OPTIONAL<UTF8String>, contentType: ContentType);
static _from_object(_o: {
[_K in keyof ContentHints]: ContentHints[_K];
}): ContentHints;
}
export declare const _root_component_type_list_1_spec_for_ContentHints: $.ComponentSpec[];
export declare const _root_component_type_list_2_spec_for_ContentHints: $.ComponentSpec[];
export declare const _extension_additions_list_spec_for_ContentHints: $.ComponentSpec[];
export declare function _decode_ContentHints(el: _Element): ContentHints;
export declare function _encode_ContentHints(value: ContentHints, elGetter: $.ASN1Encoder<ContentHints>): _Element;
//# sourceMappingURL=ContentHints.ta.d.ts.map