import InventoryLogLevel from "../types/InventoryLogLevel"; import InventoryRepository from "../types/InventoryRepository"; /** * This is the configuration string for server listener. * * It can be: * * - http://localhost:3000 * - socket:///path/to/socket.sock * - 3000 * */ export declare const IB_LISTEN: string; /** * This changes the default value in ListenAdapter for HTTP port names. * * You should use IB_LISTEN. * * @deprecated */ export declare const IB_LISTEN_PORT: number; /** * This changes the default value in ListenAdapter for HTTP hostnames. * * You should use IB_LISTEN. * * @deprecated */ export declare const IB_LISTEN_HOSTNAME: string; export declare const IB_REPOSITORY: InventoryRepository; export declare const PG_HOST: string; export declare const PG_PORT: number; export declare const PG_DBNAME: string; export declare const PG_USER: string; export declare const PG_PASSWORD: string | undefined; export declare const IB_DEFAULT_PAGE_SIZE: number; /** * The default log level */ export declare const IB_LOG_LEVEL: InventoryLogLevel; export declare const IS_PRODUCTION: boolean;