import "@decaf-ts/core"; /** * @description HTTP client module for REST API interactions * @summary This module provides classes and utilities for interacting with REST APIs. * It exposes repository and service classes for making HTTP requests, along with * type definitions and adapters for different HTTP clients. The module includes * {@link RestRepository} and {@link RestService} for API interactions. * @module for-http */ export * from "./axios/index.d.cts"; export * from "./adapter.d.cts"; export * from "./constants.d.cts"; export * from "./HttpPaginator.d.cts"; export * from "./HttpStatement.d.cts"; export * from "./RestRepository.d.cts"; export * from "./RestService.d.cts"; export * from "./types.d.cts"; export * from "./event/index.d.cts"; /** * @description Current version of the for-http module * @summary Version identifier for the module * @const VERSION */ export declare const VERSION = "0.18.14"; /** * @description Represents the current commit hash of the module build. * @summary Stores the current git commit hash for the package. The build replaces * the placeholder with the actual commit hash at publish time. * @const COMMIT */ export declare const COMMIT = "b9072d5"; /** * @description Represents the full version string of the module. * @summary Stores the semver version and commit hash for the package. * The build replaces the placeholder with the actual `-` value at publish time. * @const FULL_VERSION */ export declare const FULL_VERSION = "0.18.14-b9072d5"; export declare const PACKAGE_NAME = "@decaf-ts/for-http";