import { INTEGER } from "@wildboar/asn1"; import * as $ from "@wildboar/asn1/functional"; /** * @summary ResourceSyntax * @description * * ### ASN.1 Definition: * * ```asn1 * ResourceSyntax ::= INTEGER { * insufficientMemory(0), insufficientAssociations(1), insufficientDiskSpace(2), * miscellaneousResourceExhausted(4)} * ``` */ export type ResourceSyntax = INTEGER; /** * @summary ResourceSyntax_insufficientMemory * @constant * @type {number} */ export declare const ResourceSyntax_insufficientMemory: ResourceSyntax; /** * @summary ResourceSyntax_insufficientMemory * @constant * @type {number} */ export declare const insufficientMemory: ResourceSyntax; /** * @summary ResourceSyntax_insufficientAssociations * @constant * @type {number} */ export declare const ResourceSyntax_insufficientAssociations: ResourceSyntax; /** * @summary ResourceSyntax_insufficientAssociations * @constant * @type {number} */ export declare const insufficientAssociations: ResourceSyntax; /** * @summary ResourceSyntax_insufficientDiskSpace * @constant * @type {number} */ export declare const ResourceSyntax_insufficientDiskSpace: ResourceSyntax; /** * @summary ResourceSyntax_insufficientDiskSpace * @constant * @type {number} */ export declare const insufficientDiskSpace: ResourceSyntax; /** * @summary ResourceSyntax_miscellaneousResourceExhausted * @constant * @type {number} */ export declare const ResourceSyntax_miscellaneousResourceExhausted: ResourceSyntax; /** * @summary ResourceSyntax_miscellaneousResourceExhausted * @constant * @type {number} */ export declare const miscellaneousResourceExhausted: ResourceSyntax; export declare const _decode_ResourceSyntax: $.ASN1Decoder; export declare const _encode_ResourceSyntax: $.ASN1Encoder; //# sourceMappingURL=ResourceSyntax.ta.d.mts.map