(id: string)
| 798 | |
| 799 | type QueryKeyB = ['queryB', string] |
| 800 | const getQueryKeyB = (id: string): QueryKeyB => ['queryB', id] |
| 801 | type GetQueryFunctionB = () => QueryFunction<string, QueryKeyB> |
| 802 | const getQueryFunctionB: GetQueryFunctionB = () => () => { |
| 803 | return '1' |