UNPKG
@oiiai/oiiai-taro-react
Version:
latest (0.0.1)
0.0.1
OiiaiUI is a miniprogram ui library for TaroJS
github.com/MengerZhang/oiiai
MengerZhang/oiiai
@oiiai/oiiai-taro-react
/
components
/
global
/
size.ts
11 lines
(9 loc)
•
176 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
class
Size
{
width
:
number
height
:
number
constructor
(
width
:
number
,
height
:
number
) {
this
.
width
= width;
this
.
height
= height; } }
export
{
Size
}