commerce/framework/swell/api/utils/fetch-swell-api.ts
2021-03-29 17:05:20 -06:00

10 lines
228 B
TypeScript

import { swellConfig } from '../../index'
const fetchSwellApi = async (query: string, method: string) => {
const { swell } = swellConfig
const res = await swell[query][method]()
return res
}
export default fetchSwellApi