You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
// @ts-ignore
|
|
|
|
|
/* eslint-disable */
|
|
|
|
|
import request from '@/utils/request';
|
|
|
|
|
|
|
|
|
|
/** errorHtml GET /error */
|
|
|
|
|
export async function errorHtmlUsingGet(options?: { [key: string]: any }) {
|
|
|
|
|
return request<API.ModelAndView>('/error', {
|
|
|
|
|
method: 'GET',
|
|
|
|
|
...(options || {}),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** errorHtml PUT /error */
|
|
|
|
|
export async function errorHtmlUsingPut(options?: { [key: string]: any }) {
|
|
|
|
|
return request<API.ModelAndView>('/error', {
|
|
|
|
|
method: 'PUT',
|
|
|
|
|
...(options || {}),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** errorHtml POST /error */
|
|
|
|
|
export async function errorHtmlUsingPost(options?: { [key: string]: any }) {
|
|
|
|
|
return request<API.ModelAndView>('/error', {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
...(options || {}),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** errorHtml DELETE /error */
|
|
|
|
|
export async function errorHtmlUsingDelete(options?: { [key: string]: any }) {
|
|
|
|
|
return request<API.ModelAndView>('/error', {
|
|
|
|
|
method: 'DELETE',
|
|
|
|
|
...(options || {}),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** errorHtml PATCH /error */
|
|
|
|
|
export async function errorHtmlUsingPatch(options?: { [key: string]: any }) {
|
|
|
|
|
return request<API.ModelAndView>('/error', {
|
|
|
|
|
method: 'PATCH',
|
|
|
|
|
...(options || {}),
|
|
|
|
|
});
|
|
|
|
|
}
|