import * as $ from '@wildboar/asn1/functional'; /** * @summary EnforcementAction * @description * * ### ASN.1 Definition: * * ```asn1 * EnforcementAction ::= ENUMERATED { * denyWithResponse(0), denyWithoutResponse(1), abortAssociation(2), * denyWithFalseResponse(3), allow(4)} * ``` * * @enum {number} */ export declare enum _enum_for_EnforcementAction { denyWithResponse = 0, denyWithoutResponse = 1, abortAssociation = 2, denyWithFalseResponse = 3, allow = 4 } /** * @summary EnforcementAction * @description * * ### ASN.1 Definition: * * ```asn1 * EnforcementAction ::= ENUMERATED { * denyWithResponse(0), denyWithoutResponse(1), abortAssociation(2), * denyWithFalseResponse(3), allow(4)} * ``` * * @enum {number} */ export type EnforcementAction = _enum_for_EnforcementAction; /** * @summary EnforcementAction * @description * * ### ASN.1 Definition: * * ```asn1 * EnforcementAction ::= ENUMERATED { * denyWithResponse(0), denyWithoutResponse(1), abortAssociation(2), * denyWithFalseResponse(3), allow(4)} * ``` * * @enum {number} */ export declare const EnforcementAction: typeof _enum_for_EnforcementAction; /** * @summary EnforcementAction_denyWithResponse * @constant * @type {number} */ export declare const EnforcementAction_denyWithResponse: EnforcementAction; /** * @summary denyWithResponse * @constant * @type {number} */ export declare const denyWithResponse: EnforcementAction; /** * @summary EnforcementAction_denyWithoutResponse * @constant * @type {number} */ export declare const EnforcementAction_denyWithoutResponse: EnforcementAction; /** * @summary denyWithoutResponse * @constant * @type {number} */ export declare const denyWithoutResponse: EnforcementAction; /** * @summary EnforcementAction_abortAssociation * @constant * @type {number} */ export declare const EnforcementAction_abortAssociation: EnforcementAction; /** * @summary abortAssociation * @constant * @type {number} */ export declare const abortAssociation: EnforcementAction; /** * @summary EnforcementAction_denyWithFalseResponse * @constant * @type {number} */ export declare const EnforcementAction_denyWithFalseResponse: EnforcementAction; /** * @summary denyWithFalseResponse * @constant * @type {number} */ export declare const denyWithFalseResponse: EnforcementAction; /** * @summary EnforcementAction_allow * @constant * @type {number} */ export declare const EnforcementAction_allow: EnforcementAction; /** * @summary allow * @constant * @type {number} */ export declare const allow: EnforcementAction; export declare const _decode_EnforcementAction: $.ASN1Decoder; export declare const _encode_EnforcementAction: $.ASN1Encoder; //# sourceMappingURL=EnforcementAction.ta.d.mts.map