import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { OsiOperation_fully_encoded_data_Item } from "../OSIProtocolSpecification/OsiOperation-fully-encoded-data-Item.ta.mjs"; /** * @summary OsiOperation * @description * * ### ASN.1 Definition: * * ```asn1 * OsiOperation{OPERATION:Operations} ::= CHOICE { * fully-encoded-data [APPLICATION 1] IMPLICIT SEQUENCE SIZE (1) OF SEQUENCE { * presentation-context-identifier Presentation-context-identifier, * presentation-data-values CHOICE { * single-ASN1-type [0] * ABSTRACT-SYNTAX.&Type(OsiDirectoryOperation {{Operations}})}}} * ``` */ export type OsiOperation = { fully_encoded_data: OsiOperation_fully_encoded_data_Item[]; }; /** * @summary Decodes an ASN.1 element into a(n) OsiOperation * @function * @param {_Element} el The element being decoded. * @returns {OsiOperation} The decoded data structure. */ export declare function _decode_OsiOperation(el: _Element): OsiOperation; /** * @summary Encodes a(n) OsiOperation into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The OsiOperation, encoded as an ASN.1 Element. */ export declare function _encode_OsiOperation(value: OsiOperation, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=OsiOperation.ta.d.mts.map