commerce/packages/swell/api/utils/fetch-swell-api.ts
2022-01-14 23:33:01 -05:00

8 lines
184 B
TypeScript

import swell from '../../swell'
const fetchApi = async (query: string, method: string, variables: [] = []) => {
return swell[query][method](...variables)
}
export default fetchApi