api.ts 300 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1
import { ApiOptions, ApiProtocol, ProtocolOptions } from '../protocols/type'
fxy060608's avatar
fxy060608 已提交
2

fxy060608's avatar
fxy060608 已提交
3
export function createApi<T extends Function>(
fxy060608's avatar
fxy060608 已提交
4
  fn: T,
fxy060608's avatar
fxy060608 已提交
5 6
  protocol?: ApiProtocol | ProtocolOptions[],
  options?: ApiOptions
fxy060608's avatar
fxy060608 已提交
7
) {
fxy060608's avatar
fxy060608 已提交
8 9 10 11
  if (__DEV__ && protocol) {
  }
  if (options) {
    console.log(options)
fxy060608's avatar
fxy060608 已提交
12 13 14
  }
  return fn
}