/* eslint-disable */ // @ts-ignore import request from '@/http/vue-query'; import { CustomRequestOptions_ } from '@/http/types'; import * as API from './types'; /** 用户列表 GET /user/listAll */ export function listAllUsingGet({ options, }: { options?: CustomRequestOptions_; }) { return request('/user/listAll', { method: 'GET', ...(options || {}), }); }