UNPKG
@irysius/grid-math
Version:
latest (0.0.8)
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Tools to assist with grid math and algorithms
github.com/irysius/grid-math
irysius/grid-math
@irysius/grid-math
/
Size.d.ts
8 lines
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
declare
module
"@irysius/grid-math/Size"
{
export
interface
ISize
{
width
:
number
;
height
:
number
; }
export
function
create
(
width
:
number
,
height
:
number
):
ISize
;
export
function
isSize
(
v
:
any
): v is
ISize
; }