UNPKG

880 BTypeScriptView Raw
1import { Interfaces } from '@lxdhub/common';
2export declare class APILinks implements Interfaces.APILinks {
3 /**
4 * The homepage url of the package
5 */
6 homepage: string;
7 /**
8 * The bug report url of the package
9 */
10 bug_report: string;
11 /**
12 * The repository url of the package
13 */
14 repository: string;
15 /**
16 * The api documentation url
17 */
18 docs: string;
19}
20export declare class APIDto implements Interfaces.APIDto {
21 /**
22 * The version of the API
23 */
24 api_version: string;
25 /**
26 * The version of the npm package of the running API
27 */
28 package_version: string;
29 /**
30 * The name of the npm package
31 */
32 name: string;
33 /**
34 * The description of the npm package
35 */
36 description: string;
37 /**
38 * Further links related to the API
39 */
40 _links: APILinks;
41}