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