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