import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { OperationResult_Item } from '../Schedulerev1-ASN1Module/OperationResult-Item.ta.mjs'; /** * @summary OperationResult * @description * * ### ASN.1 Definition: * * ```asn1 * OperationResult ::= * SET OF * CHOICE {getResult [0] IMPLICIT GetResult, * getListError [1] IMPLICIT GetListError, * setResult [2] IMPLICIT SetResult, * setListError [3] IMPLICIT SetListError, * actionResult [4] IMPLICIT ActionResult, * commonError [5] IMPLICIT CommonError} * ``` */ export type OperationResult = OperationResult_Item[]; /** * @summary Decodes an ASN.1 element into a(n) OperationResult * @function * @param {_Element} el The element being decoded. * @returns {OperationResult} The decoded data structure. */ export declare function _decode_OperationResult(el: _Element): OperationResult; /** * @summary Encodes a(n) OperationResult 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 OperationResult, encoded as an ASN.1 Element. */ export declare function _encode_OperationResult(value: OperationResult, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=OperationResult.ta.d.mts.map