(options?: { mutation?:UseMutationOptions<Awaited<ReturnType<typeof searchLabels>>, TError,{data: SearchLabelsBody}, TContext>, }
)
| 136 | export type SearchLabelsMutationError = unknown |
| 137 | |
| 138 | export const useSearchLabels = <TError = unknown, |
| 139 | TContext = unknown>(options?: { mutation?:UseMutationOptions<Awaited<ReturnType<typeof searchLabels>>, TError,{data: SearchLabelsBody}, TContext>, } |
| 140 | ) => { |
| 141 | |
| 142 | const mutationOptions = getSearchLabelsMutationOptions(options); |
| 143 | |
| 144 | return useMutation(mutationOptions); |
| 145 | } |
| 146 | /** |
| 147 | * Get category for a list of labels |
| 148 | */ |
no test coverage detected