import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ResultInfoFromThread } from '../CSModule/ResultInfoFromThread.ta.mjs'; /** * @summary TriggerResultInfo_resultType * @description * * ### ASN.1 Definition: * * ```asn1 * TriggerResultInfo-resultType ::= CHOICE { -- REMOVED_FROM_UNNESTING -- } * ``` */ export type TriggerResultInfo_resultType = { singleTriggerResult: ResultInfoFromThread; } | { sequentialTriggerResult: ResultInfoFromThread[]; } | { parallelTriggerResult: ResultInfoFromThread[]; }; /** * @summary Decodes an ASN.1 element into a(n) TriggerResultInfo_resultType * @function * @param {_Element} el The element being decoded. * @returns {TriggerResultInfo_resultType} The decoded data structure. */ export declare function _decode_TriggerResultInfo_resultType(el: _Element): TriggerResultInfo_resultType; /** * @summary Encodes a(n) TriggerResultInfo_resultType 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 TriggerResultInfo_resultType, encoded as an ASN.1 Element. */ export declare function _encode_TriggerResultInfo_resultType(value: TriggerResultInfo_resultType, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=TriggerResultInfo-resultType.ta.d.mts.map