import { OBJECT_IDENTIFIER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary SMIME_CAPS * @description * * ### ASN.1 Definition: * * ```asn1 * SMIME-CAPS ::= CLASS { * &id OBJECT IDENTIFIER UNIQUE, * &Type OPTIONAL * } * WITH SYNTAX { [TYPE &Type] IDENTIFIED BY &id } * ``` * * @interface */ export interface SMIME_CAPS { /** * @summary A fixed string that can be used for external programs to determine the object class of this object. */ readonly class: "SMIME-CAPS"; /** * @summary A map of type fields to their corresponding decoders. */ readonly decoderFor: Partial<{ [_K in keyof SMIME_CAPS]: $.ASN1Decoder[_K]>; }>; /** * @summary A map of type fields to their corresponding encoders. */ readonly encoderFor: Partial<{ [_K in keyof SMIME_CAPS]: $.ASN1Encoder[_K]>; }>; /** * @summary &id */ readonly "&id"?: OBJECT_IDENTIFIER; /** * @summary &Type */ readonly "&Type": Type; } //# sourceMappingURL=SMIME-CAPS.oca.d.mts.map