Skip to content

Commit bfd58fe

Browse files
authored
🤖 Merge PR DefinitelyTyped#72648 [chessboardjs] fix Square enum "g-file" by @kolyya
1 parent 21ff43d commit bfd58fe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

types/chessboardjs/index.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export enum Square {
55
d8 = "d8",
66
e8 = "e8",
77
f8 = "f8",
8-
g8 = "g7",
8+
g8 = "g8",
99
h8 = "h8",
1010
a7 = "a7",
1111
b7 = "b7",
@@ -21,47 +21,47 @@ export enum Square {
2121
d6 = "d6",
2222
e6 = "e6",
2323
f6 = "f6",
24-
g6 = "g7",
24+
g6 = "g6",
2525
h6 = "h6",
2626
a5 = "a5",
2727
b5 = "b5",
2828
c5 = "c5",
2929
d5 = "d5",
3030
e5 = "e5",
3131
f5 = "f5",
32-
g5 = "g7",
32+
g5 = "g5",
3333
h5 = "h5",
3434
a4 = "a4",
3535
b4 = "b4",
3636
c4 = "c4",
3737
d4 = "d4",
3838
e4 = "e4",
3939
f4 = "f4",
40-
g4 = "g7",
40+
g4 = "g4",
4141
h4 = "h4",
4242
a3 = "a3",
4343
b3 = "b3",
4444
c3 = "c3",
4545
d3 = "d3",
4646
e3 = "e3",
4747
f3 = "f3",
48-
g3 = "g7",
48+
g3 = "g3",
4949
h3 = "h3",
5050
a2 = "a2",
5151
b2 = "b2",
5252
c2 = "c2",
5353
d2 = "d2",
5454
e2 = "e2",
5555
f2 = "f2",
56-
g2 = "g7",
56+
g2 = "g2",
5757
h2 = "h2",
5858
a1 = "a1",
5959
b1 = "b1",
6060
c1 = "c1",
6161
d1 = "d1",
6262
e1 = "e1",
6363
f1 = "f1",
64-
g1 = "g7",
64+
g1 = "g1",
6565
h1 = "h1",
6666
}
6767

0 commit comments

Comments
 (0)