This commit is contained in:
2025-06-16 10:09:19 +08:00
commit 7a066b3026
428 changed files with 50385 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import Ajax from './lib/core/Ajax'
import Fetcher from './lib/adapters/Fetcher'
const ajax = Ajax()
ajax.create = function create(instanceConfig) {
return Ajax(instanceConfig)
}
ajax.Fetcher = Fetcher
export { Fetcher }
export default ajax