(props: AdminDeleteUserProps)
| 1605 | export type AdminDeleteUserProps = Omit<MutateProps<void, UsererrorError, void, string, void>, 'path' | 'verb'> |
| 1606 | |
| 1607 | export const AdminDeleteUser = (props: AdminDeleteUserProps) => ( |
| 1608 | <Mutate<void, UsererrorError, void, string, void> |
| 1609 | verb="DELETE" |
| 1610 | path={`/admin/users`} |
| 1611 | base={getConfig('api/v1')} |
| 1612 | {...props} |
| 1613 | /> |
| 1614 | ) |
| 1615 | |
| 1616 | export type UseAdminDeleteUserProps = Omit<UseMutateProps<void, UsererrorError, void, string, void>, 'path' | 'verb'> |
| 1617 |
nothing calls this directly
no test coverage detected
searching dependent graphs…