UNPKG
@winged/core
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Morden webapp framekwork made only for ts developers. (UNDER DEVELOPMENT, PLEASE DO NOT USE)
@winged/core
/
build
/
vdom
/
dataPoint
/
DataPointExtension.d.ts
9 lines
(8 loc)
•
302 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
DataPoint
}
from
'./DataPoint'
;
export
declare
abstract
class
DataPointExtension
{
protected
requireUpdate
:
DataPoint
[
'requireUpdate'
];
constructor
(
dataPoint
:
DataPoint
);
abstract
init
(
expression
:
string
):
string
;
onValueChange
(
value
:
string
):
string
;
onDestroy
():
void
; }