Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
archeoss committed Feb 2, 2024
1 parent f361e3a commit e354e7f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion frontend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository.workspace = true

[lib]
name = "frontend"
path = "/dev/null"
path = "bindings.rs"
crate-type = ["lib"]

[build-dependencies]
Expand Down
File renamed without changes.
18 changes: 9 additions & 9 deletions frontend/src/types/rust.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

/** Data needed to connect to a BOB cluster */
interface BobConnectionData {
/** Address to connect to */
hostname: Hostname;
/** [Optional] Credentials used for BOB authentication */
credentials?: Credentials;
/** Address to connect to */
hostname: Hostname;
/** [Optional] Credentials used for BOB authentication */
credentials?: Credentials;
}

/** Optional auth credentials for a BOB cluster */
interface Credentials {
/** Login used during auth */
login: string;
/** Password used during auth */
password: string;
/** Login used during auth */
login: string;
/** Password used during auth */
password: string;
}

type Hostname = string
type Hostname = string;

0 comments on commit e354e7f

Please sign in to comment.