import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ScriptThreadSet } from '../CSModule/ScriptThreadSet.ta.mjs'; /** * @summary ExecutionType * @description * * ### ASN.1 Definition: * * ```asn1 * ExecutionType ::= CHOICE { * singleExecution ScriptThreadSet, * parallelExecution SET OF ScriptThreadSet, * sequentialExecution [1] SEQUENCE OF ScriptThreadSet * } * ``` */ export type ExecutionType = { singleExecution: ScriptThreadSet; } | { parallelExecution: ScriptThreadSet[]; } | { sequentialExecution: ScriptThreadSet[]; }; /** * @summary Decodes an ASN.1 element into a(n) ExecutionType * @function * @param {_Element} el The element being decoded. * @returns {ExecutionType} The decoded data structure. */ export declare function _decode_ExecutionType(el: _Element): ExecutionType; /** * @summary Encodes a(n) ExecutionType 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 ExecutionType, encoded as an ASN.1 Element. */ export declare function _encode_ExecutionType(value: ExecutionType, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=ExecutionType.ta.d.mts.map