UNPKG

@wildboar/rose

Version:
33 lines 1.2 kB
import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; import { ROS } from '../Remote-Operations-Generic-ROS-PDUs/ROS.ta.mjs'; /** * @summary ROS_ConsumerAS * @description * * ### ASN.1 Definition: * * ```asn1 * ROS-ConsumerAS{InvokeId:InvokeIdSet, OPERATION-PACKAGE:package} ::= * ROS * {{InvokeIdSet}, {ConsumerPerforms {package}}, * {SupplierPerforms {package}}} * ``` */ export type ROS_ConsumerAS = ROS; /** * @summary Decodes an ASN.1 element into a(n) ROS_ConsumerAS * @function * @param {_Element} el The element being decoded. * @returns {ROS_ConsumerAS} The decoded data structure. */ export declare function _decode_ROS_ConsumerAS(el: _Element): ROS_ConsumerAS; /** * @summary Encodes a(n) ROS_ConsumerAS 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 ROS_ConsumerAS, encoded as an ASN.1 Element. */ export declare function _encode_ROS_ConsumerAS(value: ROS_ConsumerAS, elGetter: $.ASN1Encoder<ROS_ConsumerAS>): _Element; //# sourceMappingURL=ROS-ConsumerAS.ta.d.mts.map