UNPKG
wgo
Version:
latest (3.0.0-alpha.10)
3.0.0-alpha.10
3.0.0-alpha.9
3.0.0-alpha.8
3.0.0-alpha.7
3.0.0-alpha.6
3.0.0-alpha.5
3.0.0-alpha.1
3.0.0-alpha.0
JavaScript library for game of Go
waltheri.github.io/wgo.js
waltheri/wgo.js
wgo
/
dist
/
BoardBase
/
BoardObject.d.ts
11 lines
(10 loc)
•
270 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Represents generic board object specified by type, which can be painted on the board. * It contains z-index and opacity. */
export
default
class
BoardObject
{
type
:
string
;
zIndex
:
number
;
opacity
:
number
;
constructor
(
type
:
string
); }