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.

44 lines
1.1 KiB
TypeScript

2 years ago
// @ts-ignore
/* eslint-disable */
import request from '@/utils/request';
10 months ago
/** errorHtml GET /error */
export async function errorHtmlUsingGet(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
2 years ago
method: 'GET',
...(options || {}),
});
}
10 months ago
/** errorHtml PUT /error */
export async function errorHtmlUsingPut(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
2 years ago
method: 'PUT',
...(options || {}),
});
}
10 months ago
/** errorHtml POST /error */
export async function errorHtmlUsingPost(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
2 years ago
method: 'POST',
...(options || {}),
});
}
10 months ago
/** errorHtml DELETE /error */
export async function errorHtmlUsingDelete(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
2 years ago
method: 'DELETE',
...(options || {}),
});
}
10 months ago
/** errorHtml PATCH /error */
export async function errorHtmlUsingPatch(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
2 years ago
method: 'PATCH',
...(options || {}),
});
}