import { INTEGER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary TerminalType * @description * * ### ASN.1 Definition: * * ```asn1 * TerminalType ::= INTEGER { * telex(3), teletex(4), g3-facsimile(5), g4-facsimile(6), ia5-terminal(7), * videotex(8)}(0..ub-integer-options) * ``` */ export type TerminalType = INTEGER; /** * @summary TerminalType_telex * @constant * @type {number} */ export declare const TerminalType_telex: TerminalType; /** * @summary TerminalType_telex * @constant * @type {number} */ export declare const telex: TerminalType; /** * @summary TerminalType_teletex * @constant * @type {number} */ export declare const TerminalType_teletex: TerminalType; /** * @summary TerminalType_teletex * @constant * @type {number} */ export declare const teletex: TerminalType; /** * @summary TerminalType_g3_facsimile * @constant * @type {number} */ export declare const TerminalType_g3_facsimile: TerminalType; /** * @summary TerminalType_g3_facsimile * @constant * @type {number} */ export declare const g3_facsimile: TerminalType; /** * @summary TerminalType_g4_facsimile * @constant * @type {number} */ export declare const TerminalType_g4_facsimile: TerminalType; /** * @summary TerminalType_g4_facsimile * @constant * @type {number} */ export declare const g4_facsimile: TerminalType; /** * @summary TerminalType_ia5_terminal * @constant * @type {number} */ export declare const TerminalType_ia5_terminal: TerminalType; /** * @summary TerminalType_ia5_terminal * @constant * @type {number} */ export declare const ia5_terminal: TerminalType; /** * @summary TerminalType_videotex * @constant * @type {number} */ export declare const TerminalType_videotex: TerminalType; /** * @summary TerminalType_videotex * @constant * @type {number} */ export declare const videotex: TerminalType; export declare const _decode_TerminalType: $.ASN1Decoder; export declare const _encode_TerminalType: $.ASN1Encoder; //# sourceMappingURL=TerminalType.ta.d.mts.map