This website works better with JavaScript.
Home
Explore
帮助
返回水杉在线
登录水杉在线
登录水杉码园
wlxsp
/
test1
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Avoids as any
main
Eric Amodio
3 years ago
parent
26700d7efa
commit
7555abecd8
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/commands/git/fetch.ts
+1
-1
src/commands/git/pull.ts
+1
-1
src/commands/git/push.ts
+ 1
- 1
src/commands/git/fetch.ts
View File
@ -76,7 +76,7 @@ export class FetchGitCommand extends QuickCommand
{
}
if
(
state
.
repos
!=
null
&&
!
Array
.
isArray
(
state
.
repos
)
)
{
state
.
repos
=
[
state
.
repos
as
any
]
;
state
.
repos
=
[
state
.
repos
as
string
]
;
}
let
skippedStepOne
=
false
;
+ 1
- 1
src/commands/git/pull.ts
View File
@ -82,7 +82,7 @@ export class PullGitCommand extends QuickCommand
{
}
if
(
state
.
repos
!=
null
&&
!
Array
.
isArray
(
state
.
repos
)
)
{
state
.
repos
=
[
state
.
repos
as
any
]
;
state
.
repos
=
[
state
.
repos
as
string
]
;
}
let
skippedStepOne
=
false
;
+ 1
- 1
src/commands/git/push.ts
View File
@ -88,7 +88,7 @@ export class PushGitCommand extends QuickCommand
{
}
if
(
state
.
repos
!=
null
&&
!
Array
.
isArray
(
state
.
repos
)
)
{
state
.
repos
=
[
state
.
repos
as
any
]
;
state
.
repos
=
[
state
.
repos
as
string
]
;
}
let
skippedStepOne
=
false
;
Write
Preview
Loading…
Cancel
Save