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