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