import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary TestOutcome * @description * * ### ASN.1 Definition: * * ```asn1 * TestOutcome ::= INTEGER { * inconclusive(0), pass(1), fail(2), timed-out(3), premature-termination(4) * } * ``` */ export type TestOutcome = INTEGER; /** * @summary TestOutcome_inconclusive * @constant * @type {number} */ export declare const TestOutcome_inconclusive: TestOutcome; /** * @summary TestOutcome_inconclusive * @constant * @type {number} */ export declare const inconclusive: TestOutcome; /** * @summary TestOutcome_pass * @constant * @type {number} */ export declare const TestOutcome_pass: TestOutcome; /** * @summary TestOutcome_pass * @constant * @type {number} */ export declare const pass: TestOutcome; /** * @summary TestOutcome_fail * @constant * @type {number} */ export declare const TestOutcome_fail: TestOutcome; /** * @summary TestOutcome_fail * @constant * @type {number} */ export declare const fail: TestOutcome; /** * @summary TestOutcome_timed_out * @constant * @type {number} */ export declare const TestOutcome_timed_out: TestOutcome; /** * @summary TestOutcome_timed_out * @constant * @type {number} */ export declare const timed_out: TestOutcome; /** * @summary TestOutcome_premature_termination * @constant * @type {number} */ export declare const TestOutcome_premature_termination: TestOutcome; /** * @summary TestOutcome_premature_termination * @constant * @type {number} */ export declare const premature_termination: TestOutcome; export declare const _decode_TestOutcome: $.ASN1Decoder; export declare const _encode_TestOutcome: $.ASN1Encoder; //# sourceMappingURL=TestOutcome.ta.d.mts.map