UNPKG
test-whiteboard
Version:
latest (1.0.1)
1.0.1
1.0.0
https://gitlab.gridsum.com/gov_law_tech/FrontEnd/whiteboard
test-whiteboard
/
libs
/
whiteboardText.js
10 lines
(9 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
export default
class
WhiteboardText
{
constructor
(id,content,x,y,stroke){
this
.id=id;
this
.stroke= stroke;
this
.content = content;
this
.x=x;
this
.y = y; } }