interface.uts 310 B

1234567891011121314151617
  1. export type CommonOptions = {
  2. success ?: (res: any) => void
  3. fail ?: (res : any) => void
  4. }
  5. export type testInovkeRequest = (options : CommonOptions) => void
  6. export type testInovkeUploadFile = (options : CommonOptions) => void
  7. export type testInovkeDownloadFile = (options : CommonOptions) => void