-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathVersionRoute.ts
More file actions
30 lines (27 loc) · 960 Bytes
/
VersionRoute.ts
File metadata and controls
30 lines (27 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* eslint-disable */
/* tslint:disable */
/*
* ---------------------------------------------------------------
* ## THIS FILE WAS GENERATED VIA SWAGGER-TYPESCRIPT-API ##
* ## ##
* ## AUTHOR: acacode ##
* ## SOURCE: https://github.com/acacode/swagger-typescript-api ##
* ---------------------------------------------------------------
*/
import { ServerInfoDTO } from "./data-contracts";
export namespace Version {
/**
* @description Returns the server version and revision
* @name VersionList
* @summary Get server version
* @request GET:/version
*/
export namespace VersionList {
export type RequestParams = {};
export type RequestQuery = {};
export type RequestBody = never;
export type RequestHeaders = {};
export type ResponseBody = ServerInfoDTO;
}
export const VersionListPath = "/version";
}