export component Example inherits Rectangle { // declares a callback with a return value callback hello(int, int) -> int; hello(aa, bb) => { aa + bb } }
别名
可以用与双向绑定类似的方式声明回调别名:
1 2 3 4
export component Example inherits Rectangle { callback clicked <=> area.clicked; area := TouchArea {} }