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