commerce/framework/swell/api/utils/fetch-swell-api.ts
2021-08-27 18:33:07 -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