// @ts-ignore /* eslint-disable */ import request from '@/utils/request'; /** error GET /error */ export async function errorUsingGet(options?: { [key: string]: any }) { return request>('/error', { method: 'GET', ...(options || {}), }); } /** error PUT /error */ export async function errorUsingPut(options?: { [key: string]: any }) { return request>('/error', { method: 'PUT', ...(options || {}), }); } /** error POST /error */ export async function errorUsingPost(options?: { [key: string]: any }) { return request>('/error', { method: 'POST', ...(options || {}), }); } /** error DELETE /error */ export async function errorUsingDelete(options?: { [key: string]: any }) { return request>('/error', { method: 'DELETE', ...(options || {}), }); } /** error PATCH /error */ export async function errorUsingPatch(options?: { [key: string]: any }) { return request>('/error', { method: 'PATCH', ...(options || {}), }); }