1.0.5 • Published 6 months ago

@stone-ton/axios-wrapper v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

axios-wrapper

Lib para fazer wrapper do axios

Usage

import { AxiosRequestConfig } from 'axios'
import {
  axiosRequest
} from '@stone-ton/axios-wrapper'

interface FooInput {
  bar: string
}

interface Foo {
  id: string
  bar: string
}

const result = await axiosRequest<Foo, FooInput>({
  url: 'http://localhost:3000',
  method: 'POST',
  timeout: 3000,
  data: {
    bar: '🍌'
  }
})

// result = {
//   data: { id: '12':  bar: '🍌' }
// }
1.0.2

7 months ago

1.0.1

8 months ago

1.0.0

9 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

0.0.4

1 year ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago