UNPKG
cyra-pure
Version:
latest (1.3.8)
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
single page application view engine
github.com/MeituanX/cyra
MeituanX/cyra
cyra-pure
/
js
/
model
/
Action.d.ts
9 lines
(8 loc)
•
204 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Page
}
from
'./Page'
;
export
declare
class
Action
{
fromPageID
:
string
;
toPageID
:
string
;
fromPage
:
Page
;
toPage
:
Page
;
constructor
(
fromPageID
?:
string
,
toPageID
?:
string
); }