(props: AdminListUsersProps)
| 1559 | export type AdminListUsersProps = Omit<GetProps<TypesUser[], UsererrorError, AdminListUsersQueryParams, void>, 'path'> |
| 1560 | |
| 1561 | export const AdminListUsers = (props: AdminListUsersProps) => ( |
| 1562 | <Get<TypesUser[], UsererrorError, AdminListUsersQueryParams, void> |
| 1563 | path={`/admin/users`} |
| 1564 | base={getConfig('api/v1')} |
| 1565 | {...props} |
| 1566 | /> |
| 1567 | ) |
| 1568 | |
| 1569 | export type UseAdminListUsersProps = Omit< |
| 1570 | UseGetProps<TypesUser[], UsererrorError, AdminListUsersQueryParams, void>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…