1234567891011121314151617 |
- export type CommonOptions = {
- success ?: (res: any) => void
- fail ?: (res : any) => void
- }
- export type testInovkeRequest = (options : CommonOptions) => void
- export type testInovkeUploadFile = (options : CommonOptions) => void
- export type testInovkeDownloadFile = (options : CommonOptions) => void
|