feat: ts support, full creation

This commit is contained in:
a632079
2020-09-05 01:18:30 +08:00
parent 585592faa9
commit 2a04853948
161 changed files with 834 additions and 1 deletions

5
module_types/batch.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
import { RequestBaseConfig } from './base'
export interface BatchRequestConfig extends RequestBaseConfig {
[index: string]: unknown
}