import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary ReferenceClockType * @description * * ### ASN.1 Definition: * * ```asn1 * ReferenceClockType ::= INTEGER { * unspecifiedOrUnknown(0), calibratedAtomicClock(1), radioVLForLF(2), * radioHF(3), radioUHF(4), localNet(5), synch(6), wallclock(7), * telephoneModem(8), gps(9), loranC(10), other(11)} * ``` */ export type ReferenceClockType = INTEGER; /** * @summary ReferenceClockType_unspecifiedOrUnknown * @constant * @type {number} */ export declare const ReferenceClockType_unspecifiedOrUnknown: ReferenceClockType; /** * @summary ReferenceClockType_unspecifiedOrUnknown * @constant * @type {number} */ export declare const unspecifiedOrUnknown: ReferenceClockType; /** * @summary ReferenceClockType_calibratedAtomicClock * @constant * @type {number} */ export declare const ReferenceClockType_calibratedAtomicClock: ReferenceClockType; /** * @summary ReferenceClockType_calibratedAtomicClock * @constant * @type {number} */ export declare const calibratedAtomicClock: ReferenceClockType; /** * @summary ReferenceClockType_radioVLForLF * @constant * @type {number} */ export declare const ReferenceClockType_radioVLForLF: ReferenceClockType; /** * @summary ReferenceClockType_radioVLForLF * @constant * @type {number} */ export declare const radioVLForLF: ReferenceClockType; /** * @summary ReferenceClockType_radioHF * @constant * @type {number} */ export declare const ReferenceClockType_radioHF: ReferenceClockType; /** * @summary ReferenceClockType_radioHF * @constant * @type {number} */ export declare const radioHF: ReferenceClockType; /** * @summary ReferenceClockType_radioUHF * @constant * @type {number} */ export declare const ReferenceClockType_radioUHF: ReferenceClockType; /** * @summary ReferenceClockType_radioUHF * @constant * @type {number} */ export declare const radioUHF: ReferenceClockType; /** * @summary ReferenceClockType_localNet * @constant * @type {number} */ export declare const ReferenceClockType_localNet: ReferenceClockType; /** * @summary ReferenceClockType_localNet * @constant * @type {number} */ export declare const localNet: ReferenceClockType; /** * @summary ReferenceClockType_synch * @constant * @type {number} */ export declare const ReferenceClockType_synch: ReferenceClockType; /** * @summary ReferenceClockType_synch * @constant * @type {number} */ export declare const synch: ReferenceClockType; /** * @summary ReferenceClockType_wallclock * @constant * @type {number} */ export declare const ReferenceClockType_wallclock: ReferenceClockType; /** * @summary ReferenceClockType_wallclock * @constant * @type {number} */ export declare const wallclock: ReferenceClockType; /** * @summary ReferenceClockType_telephoneModem * @constant * @type {number} */ export declare const ReferenceClockType_telephoneModem: ReferenceClockType; /** * @summary ReferenceClockType_telephoneModem * @constant * @type {number} */ export declare const telephoneModem: ReferenceClockType; /** * @summary ReferenceClockType_gps * @constant * @type {number} */ export declare const ReferenceClockType_gps: ReferenceClockType; /** * @summary ReferenceClockType_gps * @constant * @type {number} */ export declare const gps: ReferenceClockType; /** * @summary ReferenceClockType_loranC * @constant * @type {number} */ export declare const ReferenceClockType_loranC: ReferenceClockType; /** * @summary ReferenceClockType_loranC * @constant * @type {number} */ export declare const loranC: ReferenceClockType; /** * @summary ReferenceClockType_other * @constant * @type {number} */ export declare const ReferenceClockType_other: ReferenceClockType; /** * @summary ReferenceClockType_other * @constant * @type {number} */ export declare const other: ReferenceClockType; export declare const _decode_ReferenceClockType: $.ASN1Decoder; export declare const _encode_ReferenceClockType: $.ASN1Encoder; //# sourceMappingURL=ReferenceClockType.ta.d.mts.map