goshop-api-client
v1.0.0
Published
A library for goshop api
Downloads
5
Readme
goshop-api-client
A library for goshop api
generate with axios
swagger-typescript-api generate --axios --api-class-name="Goshop" --name api.ts --path goshop.swagger.json
generate with fetch
swagger-typescript-api generate --api-class-name="Goshop" --name fetch.ts --path goshop.swagger.jsonUsage with axios
import Goshop from 'goshop-api-client/api'
const storefront = new Goshop<ApiConfig>({
baseURL: '/api'
})Usage with fetch
import Goshop from 'goshop-api-client/fetch'
const storefront = new Goshop<ApiConfig>({
baseURL: '/api'
})