We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0194d4 commit ce2853fCopy full SHA for ce2853f
frontend/src/types/rust.d.ts
@@ -2,18 +2,18 @@
2
3
/** Data needed to connect to a BOB cluster */
4
interface BobConnectionData {
5
- /** Address to connect to */
6
- hostname: Hostname;
7
- /** [Optional] Credentials used for BOB authentication */
8
- credentials?: Credentials;
+ /** Address to connect to */
+ hostname: Hostname;
+ /** [Optional] Credentials used for BOB authentication */
+ credentials?: Credentials;
9
}
10
11
/** Optional auth credentials for a BOB cluster */
12
interface Credentials {
13
- /** Login used during auth */
14
- login: string;
15
- /** Password used during auth */
16
- password: string;
+ /** Login used during auth */
+ login: string;
+ /** Password used during auth */
+ password: string;
17
18
19
-type Hostname = string;
+type Hostname = string
0 commit comments