入参格式,暂时只需要传递 api 函数即可
| 18 | |
| 19 | /** 入参格式,暂时只需要传递 api 函数即可 */ |
| 20 | interface FetchSelectProps { |
| 21 | api: () => Promise<ApiData> |
| 22 | } |
| 23 | |
| 24 | export function useFetchSelect(props: FetchSelectProps) { |
| 25 | const { api } = props |
nothing calls this directly
no outgoing calls
no test coverage detected