27 lines
324 B
JavaScript
27 lines
324 B
JavaScript
export class ProtoWatchGroup {
|
|
watch(
|
|
expression:String,
|
|
context:dynamic,
|
|
{isCollection})
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
/*
|
|
@Component(
|
|
bind: {
|
|
'title': 'title',
|
|
'name': 'name'
|
|
}
|
|
)
|
|
class MyComponent implements ChangeListener {
|
|
String name;
|
|
String title;
|
|
|
|
onChange(List<Record> changes) {
|
|
|
|
}
|
|
}
|
|
|
|
*/ |