@wildboar/rose
Version:
Remote Operation Service Element PDUs in TypeScript
33 lines • 1.2 kB
text/typescript
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_SupplierAS
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* ROS-SupplierAS{InvokeId:InvokeIdSet, OPERATION-PACKAGE:package} ::=
* ROS
* {{InvokeIdSet}, {SupplierPerforms {package}},
* {ConsumerPerforms {package}}}
* ```
*/
export type ROS_SupplierAS = ROS;
/**
* @summary Decodes an ASN.1 element into a(n) ROS_SupplierAS
* @function
* @param {_Element} el The element being decoded.
* @returns {ROS_SupplierAS} The decoded data structure.
*/
export declare function _decode_ROS_SupplierAS(el: _Element): ROS_SupplierAS;
/**
* @summary Encodes a(n) ROS_SupplierAS 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_SupplierAS, encoded as an ASN.1 Element.
*/
export declare function _encode_ROS_SupplierAS(value: ROS_SupplierAS, elGetter: $.ASN1Encoder<ROS_SupplierAS>): _Element;
//# sourceMappingURL=ROS-SupplierAS.ta.d.mts.map