@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 AP_title_form1
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* AP-title-form1 ::=
* Name
* ```
*/
export type AP_title_form1 = Name;
/**
* @summary Decodes an ASN.1 element into a(n) AP_title_form1
* @function
* @param {_Element} el The element being decoded.
* @returns {AP_title_form1} The decoded data structure.
*/
export declare function _decode_AP_title_form1(el: _Element): AP_title_form1;
/**
* @summary Encodes a(n) AP_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 AP_title_form1, encoded as an ASN.1 Element.
*/
export declare function _encode_AP_title_form1(value: AP_title_form1, elGetter: $.ASN1Encoder<AP_title_form1>): _Element;
//# sourceMappingURL=AP-title-form1.ta.d.mts.map