Skip to content

Commit

Permalink
re-add type deleted in error
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Cassidy <[email protected]>
  • Loading branch information
stevecassidy committed Feb 15, 2024
1 parent 79644d1 commit ac65461
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,19 @@ export interface Relationship {
* Part of the Projects DB
* Do not use with UI code; sync code only
*/

export type PossibleConnectionInfo = undefined | {
base_url?: string | undefined;
proto?: string | undefined;
host?: string | undefined;
port?: number | undefined;
db_name?: string | undefined;
auth?: {
username: string;
password: string;
};
jwt_token?: string;
};
export interface ProjectObject {
_id: NonUniqueProjectID;
name: string;
Expand Down

0 comments on commit ac65461

Please sign in to comment.