@wildboar/acse
Version:
Association Control Service Element PDUs in TypeScript
30 lines • 1.1 kB
text/typescript
import { ASN1Element as _Element } from '@wildboar/asn1';
import * as $ from '@wildboar/asn1/functional';
import { Association_data } from '../ACSE-1/Association-data.ta.mjs';
/**
* @summary User_information
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* User-information ::= Association-data
* ```
*/
export type User_information = Association_data;
/**
* @summary Decodes an ASN.1 element into a(n) User_information
* @function
* @param {_Element} el The element being decoded.
* @returns {User_information} The decoded data structure.
*/
export declare function _decode_User_information(el: _Element): User_information;
/**
* @summary Encodes a(n) User_information 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 User_information, encoded as an ASN.1 Element.
*/
export declare function _encode_User_information(value: User_information, elGetter: $.ASN1Encoder<User_information>): _Element;
//# sourceMappingURL=User-information.ta.d.mts.map