google-trends-api-client
Version:
An fully typed and easy to use client for the google trends api.
19 lines • 724 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getProxyConfig = void 0;
// eslint-disable-next-line import/no-extraneous-dependencies
const dotenv_1 = __importDefault(require("dotenv"));
dotenv_1.default.config();
const getProxyConfig = () => {
return {
username: process.env.CONFIG_PROXY_USERNAME,
password: process.env.CONFIG_PROXY_PASSWORD,
host: process.env.CONFIG_PROXY_HOST,
port: process.env.CONFIG_PROXY_PORT,
};
};
exports.getProxyConfig = getProxyConfig;
//# sourceMappingURL=getProxyConfig.js.map