import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary OperationType * @description * * ### ASN.1 Definition: * * ```asn1 * OperationType ::= INTEGER { * action(0), create(1), delete(2), get(3), replace(4), addMember(5), * removeMember(6), replaceWithDefault(7), multipleObjectSelection(8), * filter(9)} * ``` */ export type OperationType = INTEGER; /** * @summary OperationType_action * @constant * @type {number} */ export declare const OperationType_action: OperationType; /** * @summary OperationType_action * @constant * @type {number} */ export declare const action: OperationType; /** * @summary OperationType_create * @constant * @type {number} */ export declare const OperationType_create: OperationType; /** * @summary OperationType_create * @constant * @type {number} */ export declare const create: OperationType; /** * @summary OperationType_delete_ * @constant * @type {number} */ export declare const OperationType_delete_: OperationType; /** * @summary OperationType_delete_ * @constant * @type {number} */ export declare const delete_: OperationType; /** * @summary OperationType_get_ * @constant * @type {number} */ export declare const OperationType_get_: OperationType; /** * @summary OperationType_get_ * @constant * @type {number} */ export declare const get_: OperationType; /** * @summary OperationType_replace * @constant * @type {number} */ export declare const OperationType_replace: OperationType; /** * @summary OperationType_replace * @constant * @type {number} */ export declare const replace: OperationType; /** * @summary OperationType_addMember * @constant * @type {number} */ export declare const OperationType_addMember: OperationType; /** * @summary OperationType_addMember * @constant * @type {number} */ export declare const addMember: OperationType; /** * @summary OperationType_removeMember * @constant * @type {number} */ export declare const OperationType_removeMember: OperationType; /** * @summary OperationType_removeMember * @constant * @type {number} */ export declare const removeMember: OperationType; /** * @summary OperationType_replaceWithDefault * @constant * @type {number} */ export declare const OperationType_replaceWithDefault: OperationType; /** * @summary OperationType_replaceWithDefault * @constant * @type {number} */ export declare const replaceWithDefault: OperationType; /** * @summary OperationType_multipleObjectSelection * @constant * @type {number} */ export declare const OperationType_multipleObjectSelection: OperationType; /** * @summary OperationType_multipleObjectSelection * @constant * @type {number} */ export declare const multipleObjectSelection: OperationType; /** * @summary OperationType_filter * @constant * @type {number} */ export declare const OperationType_filter: OperationType; /** * @summary OperationType_filter * @constant * @type {number} */ export declare const filter: OperationType; export declare const _decode_OperationType: $.ASN1Decoder; export declare const _encode_OperationType: $.ASN1Encoder; //# sourceMappingURL=OperationType.ta.d.mts.map