import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary TestDirection * @description * * ### ASN.1 Definition: * * ```asn1 * TestDirection ::= INTEGER { * atoZ(0), ztoA(1), bothDirections(2), transmitFromNearEnd(3), * receiveFromNearEnd(4)} * ``` */ export type TestDirection = INTEGER; /** * @summary TestDirection_atoZ * @constant * @type {number} */ export declare const TestDirection_atoZ: TestDirection; /** * @summary TestDirection_atoZ * @constant * @type {number} */ export declare const atoZ: TestDirection; /** * @summary TestDirection_ztoA * @constant * @type {number} */ export declare const TestDirection_ztoA: TestDirection; /** * @summary TestDirection_ztoA * @constant * @type {number} */ export declare const ztoA: TestDirection; /** * @summary TestDirection_bothDirections * @constant * @type {number} */ export declare const TestDirection_bothDirections: TestDirection; /** * @summary TestDirection_bothDirections * @constant * @type {number} */ export declare const bothDirections: TestDirection; /** * @summary TestDirection_transmitFromNearEnd * @constant * @type {number} */ export declare const TestDirection_transmitFromNearEnd: TestDirection; /** * @summary TestDirection_transmitFromNearEnd * @constant * @type {number} */ export declare const transmitFromNearEnd: TestDirection; /** * @summary TestDirection_receiveFromNearEnd * @constant * @type {number} */ export declare const TestDirection_receiveFromNearEnd: TestDirection; /** * @summary TestDirection_receiveFromNearEnd * @constant * @type {number} */ export declare const receiveFromNearEnd: TestDirection; export declare const _decode_TestDirection: $.ASN1Decoder; export declare const _encode_TestDirection: $.ASN1Encoder; //# sourceMappingURL=TestDirection.ta.d.mts.map