//#region src/constants.d.ts declare const ContentEncoding: { readonly AES_128_GCM: "aes128gcm"; }; type ContentEncodingType = (typeof ContentEncoding)[keyof typeof ContentEncoding]; declare const Urgency: { readonly VERY_LOW: "very-low"; readonly LOW: "low"; readonly NORMAL: "normal"; readonly HIGH: "high"; }; type UrgencyType = (typeof Urgency)[keyof typeof Urgency]; declare const DEFAULT_TTL = 2419200; //#endregion export { ContentEncoding, ContentEncodingType, DEFAULT_TTL, Urgency, UrgencyType }; //# sourceMappingURL=constants.d.mts.map