/** * Portable cross-environment encoding and decoding of structured data. * @module @nhtio/lucid-resourceful/encoding */ export { encode, decode, version } from "./bundled_nhtio_encoder"; export { E_UNENCODABLE_VALUE, E_CIRCULAR_REFERENCE, E_UNDECODABLE_VALUE, E_NOT_AN_ENCODED_VALUE, E_INVALID_VERSION, E_INCOMPATIBLE_VERSION, } from "./bundled_nhtio_encoder_exceptions"; export { FunctionSerializer } from "./bundled_nhtio_encoder_function_serializer"; export type { Encodable } from "./bundled_nhtio_encoder"; export type { BaseException } from "./bundled_nhtio_encoder_exceptions"; export type { DehydratedFunctionValue } from "./bundled_nhtio_encoder_function_serializer";