mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 15:41:45 +00:00
14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import axios from "axios";
|
|
import { getBaseUrl } from "./getBaseUrl";
|
|
import { headers } from "./headers";
|
|
import * as cheerio from "cheerio";
|
|
import { ProviderContext } from "./types";
|
|
|
|
export const providerContext: ProviderContext = {
|
|
axios,
|
|
getBaseUrl,
|
|
Aes: null,
|
|
commonHeaders: headers,
|
|
cheerio,
|
|
};
|