Skip to content

Commit

Permalink
fix: 🐛 change export order
Browse files Browse the repository at this point in the history
  • Loading branch information
chantouchsek committed Jan 26, 2023
1 parent 8f43775 commit 0863b39
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import Validator from './core/Validator'
// augment typings of Vue.js
import './vue'

export type { ValidatorType }

export class AxiosHttp {
installed = false
parsedQs: IParseOptions = {
Expand Down Expand Up @@ -41,6 +39,7 @@ export class AxiosHttp {
})
}
}
export { Validator, BaseService }
export * from './util'
export type { ValidatorType }
export { Validator, BaseService }
export default new AxiosHttp()

0 comments on commit 0863b39

Please sign in to comment.