import { OPTIONAL, INTEGER, ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary Time24Wps * @description * * ### ASN.1 Definition: * * ```asn1 * Time24Wps ::= SEQUENCE { * hour [1] INTEGER(0..23), * minute [2] INTEGER(0..59) OPTIONAL, * second [3] INTEGER(0..59) OPTIONAL, * milliseconds [4] INTEGER(0..999) OPTIONAL, * microseconds [5] INTEGER(0..999999) OPTIONAL, * nanoseconds [6] INTEGER(0..999999999) OPTIONAL, * picoseconds [7] INTEGER(0..999999999999) OPTIONAL * } * ``` * */ export declare class Time24Wps { /** * @summary `hour`. * @public * @readonly */ readonly hour: INTEGER; /** * @summary `minute`. * @public * @readonly */ readonly minute?: OPTIONAL; /** * @summary `second`. * @public * @readonly */ readonly second?: OPTIONAL; /** * @summary `milliseconds`. * @public * @readonly */ readonly milliseconds?: OPTIONAL; /** * @summary `microseconds`. * @public * @readonly */ readonly microseconds?: OPTIONAL; /** * @summary `nanoseconds`. * @public * @readonly */ readonly nanoseconds?: OPTIONAL; /** * @summary `picoseconds`. * @public * @readonly */ readonly picoseconds?: OPTIONAL; constructor( /** * @summary `hour`. * @public * @readonly */ hour: INTEGER, /** * @summary `minute`. * @public * @readonly */ minute?: OPTIONAL, /** * @summary `second`. * @public * @readonly */ second?: OPTIONAL, /** * @summary `milliseconds`. * @public * @readonly */ milliseconds?: OPTIONAL, /** * @summary `microseconds`. * @public * @readonly */ microseconds?: OPTIONAL, /** * @summary `nanoseconds`. * @public * @readonly */ nanoseconds?: OPTIONAL, /** * @summary `picoseconds`. * @public * @readonly */ picoseconds?: OPTIONAL); /** * @summary Restructures an object into a Time24Wps * @description * * This takes an `object` and converts it to a `Time24Wps`. * * @public * @static * @method * @param {Object} _o An object having all of the keys and values of a `Time24Wps`. * @returns {Time24Wps} */ static _from_object(_o: { [_K in keyof Time24Wps]: Time24Wps[_K]; }): Time24Wps; } /** * @summary The Leading Root Component Types of Time24Wps * @description * * This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_1_spec_for_Time24Wps: $.ComponentSpec[]; /** * @summary The Trailing Root Component Types of Time24Wps * @description * * This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE. * * @constant */ export declare const _root_component_type_list_2_spec_for_Time24Wps: $.ComponentSpec[]; /** * @summary The Extension Addition Component Types of Time24Wps * @description * * This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE. * * @constant */ export declare const _extension_additions_list_spec_for_Time24Wps: $.ComponentSpec[]; /** * @summary Decodes an ASN.1 element into a(n) Time24Wps * @function * @param {_Element} el The element being decoded. * @returns {Time24Wps} The decoded data structure. */ export declare function _decode_Time24Wps(el: _Element): Time24Wps; /** * @summary Encodes a(n) Time24Wps 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 Time24Wps, encoded as an ASN.1 Element. */ export declare function _encode_Time24Wps(value: Time24Wps, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=Time24Wps.ta.d.mts.map