UNPKG
@fengxi/ui-framework
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.0
Cocos Creator UI框架库 类似鸿蒙的UI框架
@fengxi/ui-framework
/
dist
/
lifecycle
/
index.d.ts
10 lines
(9 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export
interface
BaseLifecycle
{
appear
():
Promise
<
void
>;
disappear
():
Promise
<
void
>; }
export
interface
PageLifecycle
extends
BaseLifecycle
{
onPageShow
():
Promise
<
void
>;
onPageHide
():
Promise
<
void
>;
onBackPress
():
Promise
<
boolean
>; }