-
Notifications
You must be signed in to change notification settings - Fork 1
/
typedoc-definitions.ts
101 lines (82 loc) · 2 KB
/
typedoc-definitions.ts
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// LICENSE
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not
// distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
//
// END LICENSE
namespace slime.external {
export namespace docker.engine.paths {
export namespace SystemInfo {
export namespace Responses {
export type $200 = any
}
}
export namespace VolumeDelete {
export type PathParameters = any
export type QueryParameters = any
}
export namespace VolumeCreate {
export namespace Responses {
export type $201 = any
}
export namespace Parameters {
export type VolumeConfig = any
}
}
export namespace VolumeList {
export namespace Responses {
export type $200 = any
}
export type QueryParameters = any
}
export namespace ContainerCreate {
export type QueryParameters = any
export namespace Responses {
export type $200 = any
export type $201 = any
}
export namespace Parameters {
export type Body = any
}
}
export namespace ContainerList {
export type QueryParameters = any
export namespace Responses {
export type $200 = any
}
}
export namespace ContainerDelete {
export type PathParameters = any
export type QueryParameters = any
}
}
export namespace github {
export namespace rest.components.Schemas {
export type FullRepository = any;
}
export namespace rest.paths {
export namespace ReposCreateForAuthenticatedUser {
export namespace Responses {
export type $201 = any
}
export type RequestBody = any
}
export namespace ReposListForAuthenticatedUser {
export namespace Responses {
export type $200 = any
}
export type QueryParameters = any
}
export namespace ReposGet {
export namespace Responses {
export type $200 = any
}
}
export namespace ReposDelete {
export namespace Responses {
//export type $200 = any
export type $204 = any
}
}
}
}
}