UNPKG
path-framework-weberm16
Version:
latest (1.1.5)
1.1.5
1.1.4
1.1.3
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Path Application Framework
github.com/zhaw-weberm16/path
innovad/path
path-framework-weberm16
/
app
/
path-framework
/
page
/
element
/
button
/
button-detail.ts
13 lines
(10 loc)
•
229 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
*
as
path
from
'../../../path'
;
export
class
ButtonDetail
{
private
_text
:
string
;
get
text
():
string
{
return
this
.
_text
; }
set
text
(
value
:
string
) {
this
.
_text
= value; } }