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