import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary TypeOfDay * @description * * ### ASN.1 Definition: * * ```asn1 * TypeOfDay ::= INTEGER { * workday(0), weekend(1), specialDay1(2), specialDay2(3), specialDay3(4), * specialDay4(5), specialDay5(6), specialDay6(7), specialDay7(8), * specialDay8(9), specialDay9(10), specialDay10(11), specialDay11(12), * specialDay12(13), specialDay13(14), specialDay14(15), specialDay15(16), * specialDay16(17)} * ``` */ export type TypeOfDay = INTEGER; /** * @summary TypeOfDay_workday * @constant * @type {number} */ export declare const TypeOfDay_workday: TypeOfDay; /** * @summary TypeOfDay_workday * @constant * @type {number} */ export declare const workday: TypeOfDay; /** * @summary TypeOfDay_weekend * @constant * @type {number} */ export declare const TypeOfDay_weekend: TypeOfDay; /** * @summary TypeOfDay_weekend * @constant * @type {number} */ export declare const weekend: TypeOfDay; /** * @summary TypeOfDay_specialDay1 * @constant * @type {number} */ export declare const TypeOfDay_specialDay1: TypeOfDay; /** * @summary TypeOfDay_specialDay1 * @constant * @type {number} */ export declare const specialDay1: TypeOfDay; /** * @summary TypeOfDay_specialDay2 * @constant * @type {number} */ export declare const TypeOfDay_specialDay2: TypeOfDay; /** * @summary TypeOfDay_specialDay2 * @constant * @type {number} */ export declare const specialDay2: TypeOfDay; /** * @summary TypeOfDay_specialDay3 * @constant * @type {number} */ export declare const TypeOfDay_specialDay3: TypeOfDay; /** * @summary TypeOfDay_specialDay3 * @constant * @type {number} */ export declare const specialDay3: TypeOfDay; /** * @summary TypeOfDay_specialDay4 * @constant * @type {number} */ export declare const TypeOfDay_specialDay4: TypeOfDay; /** * @summary TypeOfDay_specialDay4 * @constant * @type {number} */ export declare const specialDay4: TypeOfDay; /** * @summary TypeOfDay_specialDay5 * @constant * @type {number} */ export declare const TypeOfDay_specialDay5: TypeOfDay; /** * @summary TypeOfDay_specialDay5 * @constant * @type {number} */ export declare const specialDay5: TypeOfDay; /** * @summary TypeOfDay_specialDay6 * @constant * @type {number} */ export declare const TypeOfDay_specialDay6: TypeOfDay; /** * @summary TypeOfDay_specialDay6 * @constant * @type {number} */ export declare const specialDay6: TypeOfDay; /** * @summary TypeOfDay_specialDay7 * @constant * @type {number} */ export declare const TypeOfDay_specialDay7: TypeOfDay; /** * @summary TypeOfDay_specialDay7 * @constant * @type {number} */ export declare const specialDay7: TypeOfDay; /** * @summary TypeOfDay_specialDay8 * @constant * @type {number} */ export declare const TypeOfDay_specialDay8: TypeOfDay; /** * @summary TypeOfDay_specialDay8 * @constant * @type {number} */ export declare const specialDay8: TypeOfDay; /** * @summary TypeOfDay_specialDay9 * @constant * @type {number} */ export declare const TypeOfDay_specialDay9: TypeOfDay; /** * @summary TypeOfDay_specialDay9 * @constant * @type {number} */ export declare const specialDay9: TypeOfDay; /** * @summary TypeOfDay_specialDay10 * @constant * @type {number} */ export declare const TypeOfDay_specialDay10: TypeOfDay; /** * @summary TypeOfDay_specialDay10 * @constant * @type {number} */ export declare const specialDay10: TypeOfDay; /** * @summary TypeOfDay_specialDay11 * @constant * @type {number} */ export declare const TypeOfDay_specialDay11: TypeOfDay; /** * @summary TypeOfDay_specialDay11 * @constant * @type {number} */ export declare const specialDay11: TypeOfDay; /** * @summary TypeOfDay_specialDay12 * @constant * @type {number} */ export declare const TypeOfDay_specialDay12: TypeOfDay; /** * @summary TypeOfDay_specialDay12 * @constant * @type {number} */ export declare const specialDay12: TypeOfDay; /** * @summary TypeOfDay_specialDay13 * @constant * @type {number} */ export declare const TypeOfDay_specialDay13: TypeOfDay; /** * @summary TypeOfDay_specialDay13 * @constant * @type {number} */ export declare const specialDay13: TypeOfDay; /** * @summary TypeOfDay_specialDay14 * @constant * @type {number} */ export declare const TypeOfDay_specialDay14: TypeOfDay; /** * @summary TypeOfDay_specialDay14 * @constant * @type {number} */ export declare const specialDay14: TypeOfDay; /** * @summary TypeOfDay_specialDay15 * @constant * @type {number} */ export declare const TypeOfDay_specialDay15: TypeOfDay; /** * @summary TypeOfDay_specialDay15 * @constant * @type {number} */ export declare const specialDay15: TypeOfDay; /** * @summary TypeOfDay_specialDay16 * @constant * @type {number} */ export declare const TypeOfDay_specialDay16: TypeOfDay; /** * @summary TypeOfDay_specialDay16 * @constant * @type {number} */ export declare const specialDay16: TypeOfDay; export declare const _decode_TypeOfDay: $.ASN1Decoder; export declare const _encode_TypeOfDay: $.ASN1Encoder; //# sourceMappingURL=TypeOfDay.ta.d.mts.map