import { ASN1Element as _Element } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; import { Address } from "../CMSProfileAttributes/Address.ta.mjs"; import { DBRecord } from "../CMSProfileAttributes/DBRecord.ta.mjs"; import { GPS } from "../CMSProfileAttributes/GPS.ta.mjs"; import { RFID } from "../CMSProfileAttributes/RFID.ta.mjs"; import { URI } from "../CMSProfileAttributes/URI.ta.mjs"; /** * @summary Pointer * @description * * ### ASN.1 Definition: * * ```asn1 * Pointer ::= CHOICE { * uri URI, -- Uniform Resource Identifier * rfid RFID, -- Radio Frequency Identification * gps GPS, -- Global Positioning System * address Address, -- Free format object location * dbRecord DBRecord, -- Number of fully qualified name * ... -- Expect other pointer types * } * ``` */ export type Pointer = { uri: URI; } | { rfid: RFID; } | { gps: GPS; } | { address: Address; } | { dbRecord: DBRecord; } | _Element; /** * @summary Decodes an ASN.1 element into a(n) Pointer * @function * @param {_Element} el The element being decoded. * @returns {Pointer} The decoded data structure. */ export declare function _decode_Pointer(el: _Element): Pointer; /** * @summary Encodes a(n) Pointer 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 Pointer, encoded as an ASN.1 Element. */ export declare function _encode_Pointer(value: Pointer, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=Pointer.ta.d.mts.map