import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { IntervalsOfDayWps } from '../Schedulerev1-ASN1Module/IntervalsOfDayWps.ta.mjs'; import { TriggerTimes } from '../Schedulerev1-ASN1Module/TriggerTimes.ta.mjs'; /** * @summary TimesOfDayWps * @description * * ### ASN.1 Definition: * * ```asn1 * TimesOfDayWps ::= CHOICE { * intervalsOfDayWps [0] IMPLICIT IntervalsOfDayWps, * triggerTimes [1] IMPLICIT TriggerTimes * } * ``` */ export type TimesOfDayWps = { intervalsOfDayWps: IntervalsOfDayWps; } | { triggerTimes: TriggerTimes; }; /** * @summary Decodes an ASN.1 element into a(n) TimesOfDayWps * @function * @param {_Element} el The element being decoded. * @returns {TimesOfDayWps} The decoded data structure. */ export declare function _decode_TimesOfDayWps(el: _Element): TimesOfDayWps; /** * @summary Encodes a(n) TimesOfDayWps into an ASN.1 Element. * @function * @param value The element being encoded. * @param elGetter A function that can be used to get new ASN.1 elements. * @returns {_Element} The TimesOfDayWps, encoded as an ASN.1 Element. */ export declare function _encode_TimesOfDayWps(value: TimesOfDayWps, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=TimesOfDayWps.ta.d.mts.map