import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { TestSessionId } from '../Test-ASN1Module/TestSessionId.ta.mjs'; import { TestInvocationId } from '../Test-ASN1Module/TestInvocationId.ta.mjs'; /** * @summary IndicatedTests * @description * * ### ASN.1 Definition: * * ```asn1 * IndicatedTests ::= CHOICE { * testSessionId [0] TestSessionId, * testInvocationId [1] SET OF TestInvocationId * } * ``` */ export type IndicatedTests = { testSessionId: TestSessionId; } | { testInvocationId: TestInvocationId[]; }; /** * @summary Decodes an ASN.1 element into a(n) IndicatedTests * @function * @param {_Element} el The element being decoded. * @returns {IndicatedTests} The decoded data structure. */ export declare function _decode_IndicatedTests(el: _Element): IndicatedTests; /** * @summary Encodes a(n) IndicatedTests 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 IndicatedTests, encoded as an ASN.1 Element. */ export declare function _encode_IndicatedTests(value: IndicatedTests, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=IndicatedTests.ta.d.mts.map