Move Credential type

This commit is contained in:
Michael B. Gale
2026-02-09 17:32:48 +00:00
parent 310177a1fb
commit 93302bc63a
2 changed files with 11 additions and 9 deletions
+8
View File
@@ -0,0 +1,8 @@
export type Credential = {
type: string;
host?: string;
url?: string;
username?: string;
password?: string;
token?: string;
};