UNPKG
flexlayout-react-v7-react-19
Version:
latest (0.0.2)
0.0.2
0.0.1
A multi-tab docking layout manager
seeq12/FlexLayout-0.7-React-19
flexlayout-react-v7-react-19
/
src
/
model
/
Action.ts
10 lines
(8 loc)
•
191 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
class
Action
{
type
:
string
;
data
:
Record
<
string
,
any
>;
constructor
(
type
:
string
,
data
:
Record
<
string
,
any
>
) {
this
.
type
=
type
;
this
.
data
= data; } }