import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { TestPatternSequence } from '../TestCategories-ASN1Module/TestPatternSequence.ta.mjs'; import { LoopbackError } from '../TestCategories-ASN1Module/LoopbackError.ta.mjs'; /** * @summary LoopbackTestResult_passed * @description * * ### ASN.1 Definition: * * ```asn1 * LoopbackTestResult-passed ::= SEQUENCE { -- REMOVED_FROM_UNNESTING -- } * ``` * */ export declare class LoopbackTestResult_passed { /** * @summary `loopbackDataReceived`. * @public * @readonly */ readonly loopbackDataReceived: TestPatternSequence; /** * @summary `loopbackErrorReceived`. * @public * @readonly */ readonly loopbackErrorReceived: LoopbackError; constructor( /** * @summary `loopbackDataReceived`. * @public * @readonly */ loopbackDataReceived: TestPatternSequence, /** * @summary `loopbackErrorReceived`. * @public * @readonly */ loopbackErrorReceived: LoopbackError); /** * @summary Restructures an object into a LoopbackTestResult_passed * @description * * This takes an `object` and converts it to a `LoopbackTestResult_passed`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `LoopbackTestResult_passed`. * @returns {LoopbackTestResult_passed} */ static _from_object(_o: { [_K in keyof LoopbackTestResult_passed]: LoopbackTestResult_passed[_K]; }): LoopbackTestResult_passed; } /** * @summary The Leading Root Component Types of LoopbackTestResult_passed * @description * * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_1_spec_for_LoopbackTestResult_passed: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of LoopbackTestResult_passed * @description * * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_2_spec_for_LoopbackTestResult_passed: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of LoopbackTestResult_passed * @description * * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE. * * @constant */ export declare const _extension_additions_list_spec_for_LoopbackTestResult_passed: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) LoopbackTestResult_passed * @function * @param {_Element} el The element being decoded. * @returns {LoopbackTestResult_passed} The decoded data structure. */ export declare function _decode_LoopbackTestResult_passed(el: _Element): LoopbackTestResult_passed; /** * @summary Encodes a(n) LoopbackTestResult_passed 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 LoopbackTestResult_passed, encoded as an ASN.1 Element. */ export declare function _encode_LoopbackTestResult_passed(value: LoopbackTestResult_passed, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=LoopbackTestResult-passed.ta.d.mts.map