import { INTEGER } from '@wildboar/asn1'; import * as $ from '@wildboar/asn1/functional'; /** * @summary FileType * @description * * ### ASN.1 Definition: * * ```asn1 * FileType ::= INTEGER { * unstructuredText(0), -- FTAM-1 * unstructuredBinary(1), -- FTAM-3 * blockSpecial(2)} * ``` */ export type FileType = INTEGER; /** * @summary FileType_unstructuredText * @constant * @type {number} */ export declare const FileType_unstructuredText: FileType; /** * @summary FileType_unstructuredText * @constant * @type {number} */ export declare const unstructuredText: FileType; /** * @summary FileType_unstructuredBinary * @constant * @type {number} */ export declare const FileType_unstructuredBinary: FileType; /** * @summary FileType_unstructuredBinary * @constant * @type {number} */ export declare const unstructuredBinary: FileType; /** * @summary FileType_blockSpecial * @constant * @type {number} */ export declare const FileType_blockSpecial: FileType; /** * @summary FileType_blockSpecial * @constant * @type {number} */ export declare const blockSpecial: FileType; export declare const _decode_FileType: $.ASN1Decoder; export declare const _encode_FileType: $.ASN1Encoder; //# sourceMappingURL=FileType.ta.d.mts.map