const text = new Text({
"name": "test",//text name
"position": {
"x": 20,
"y": 30
},
"layer": 100,//you don't have to type is automatically set to 100
"color": "yellow",//text color
"rotate": 0,//(you don't have to use it) example: 90
"opacity": 1,//(you don't have to use it) can be max 1 and can be min 0
"text": "Hello world!",
"font": "Futura",//you do not have to enter a font, but you can enter a font
"size": "20px"//instead of px you can use vh fln
})