Skip to content

Commit f63c65c

Browse files
fcollonvalktaletsk
authored andcommitted
Attributes of IGitAuth not optional
1 parent a7fd25c commit f63c65c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/git.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ export interface IIdentity {
132132
* Interface for the Git Auth request.
133133
*/
134134
export interface IGitAuth {
135-
username?: string;
136-
password?: string;
135+
username: string;
136+
password: string;
137137
}
138138

139139
/**

0 commit comments

Comments
 (0)