Skip to content

Commit d443171

Browse files
Fix explicit type declarations
1 parent 4329513 commit d443171

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bad/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import * as prettier from 'prettier'
22

3-
const x: string = "xx"
3+
const x = "xx"
44

5-
const a: string = "q"
5+
const a = "q"
66

77
const z = 1
88
console.log(z + x)

0 commit comments

Comments
 (0)