Skip to content

Commit

Permalink
tweak deps
Browse files Browse the repository at this point in the history
  • Loading branch information
archeoss committed Jan 21, 2024
1 parent e0194d4 commit ce2853f
Show file tree
Hide file tree
Showing 2 changed files with 747 additions and 769 deletions.
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 */

Check failure on line 5 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Insert `··`
hostname: Hostname;

Check failure on line 6 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Insert `··`
/** [Optional] Credentials used for BOB authentication */

Check failure on line 7 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Replace `··` with `····`
credentials?: Credentials;

Check failure on line 8 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Insert `··`
}

/** 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 */

Check failure on line 13 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Replace `··` with `····`
login: string;

Check failure on line 14 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Insert `··`
/** Password used during auth */

Check failure on line 15 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Replace `··` with `····`
password: string;

Check failure on line 16 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Insert `··`
}

type Hostname = string;
type Hostname = string

Check failure on line 19 in frontend/src/types/rust.d.ts

View workflow job for this annotation

GitHub Actions / lint-frontend

Insert `;`
Loading

0 comments on commit ce2853f

Please sign in to comment.