import { ASN1Element as _Element } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary DeleteSpecification_deleteModifier * @description * * ### ASN.1 Definition: * * ```asn1 * DeleteSpecification-deleteModifier ::= ENUMERATED { -- REMOVED_FROM_UNNESTING -- } * ``` * * @enum {number} */ export declare enum _enum_for_DeleteSpecification_deleteModifier { onlyIfNoContainedObjects = 0, deletesContainedObjects = 1 } /** * @summary DeleteSpecification_deleteModifier * @description * * ### ASN.1 Definition: * * ```asn1 * DeleteSpecification-deleteModifier ::= ENUMERATED { -- REMOVED_FROM_UNNESTING -- } * ``` * * @enum {number} */ export type DeleteSpecification_deleteModifier = _enum_for_DeleteSpecification_deleteModifier; /** * @summary DeleteSpecification_deleteModifier * @description * * ### ASN.1 Definition: * * ```asn1 * DeleteSpecification-deleteModifier ::= ENUMERATED { -- REMOVED_FROM_UNNESTING -- } * ``` * * @enum {number} */ export declare const DeleteSpecification_deleteModifier: typeof _enum_for_DeleteSpecification_deleteModifier; /** * @summary DeleteSpecification_deleteModifier_onlyIfNoContainedObjects * @constant * @type {number} */ export declare const DeleteSpecification_deleteModifier_onlyIfNoContainedObjects: DeleteSpecification_deleteModifier; /** * @summary onlyIfNoContainedObjects * @constant * @type {number} */ export declare const onlyIfNoContainedObjects: DeleteSpecification_deleteModifier; /** * @summary DeleteSpecification_deleteModifier_deletesContainedObjects * @constant * @type {number} */ export declare const DeleteSpecification_deleteModifier_deletesContainedObjects: DeleteSpecification_deleteModifier; /** * @summary deletesContainedObjects * @constant * @type {number} */ export declare const deletesContainedObjects: DeleteSpecification_deleteModifier; /** * @summary Decodes an ASN.1 element into a(n) DeleteSpecification_deleteModifier * @function * @param {_Element} el The element being decoded. * @returns {DeleteSpecification_deleteModifier} The decoded data structure. */ export declare function _decode_DeleteSpecification_deleteModifier(el: _Element): DeleteSpecification_deleteModifier; /** * @summary Encodes a(n) DeleteSpecification_deleteModifier 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 DeleteSpecification_deleteModifier, encoded as an ASN.1 Element. */ export declare function _encode_DeleteSpecification_deleteModifier(value: DeleteSpecification_deleteModifier, elGetter: $.ASN1Encoder): _Element; //# sourceMappingURL=DeleteSpecification-deleteModifier.ta.d.mts.map