UNPKG
react-masonry
Version:
latest (1.0.7)
2.0.0
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
1.0.0-beta-3
1.0.0-beta-2
1.0.0-beta-1
1.0.0-beta
0.1.6
0.1.5
0.1.4
0.1.3
0.1.1
ReactJs layout library.
bogdanpetru.github.io/react-masonry
bogdanpetru/react-masonry
react-masonry
/
dist
/
utils
/
place-stones.d.ts
10 lines
(9 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Spot
,
Stone
,
Position
}
from
'../internal-types'
;
export
declare
const
placeStones
:
(
{ stones, containerSize, }: { stones: Stone[]; containerSize:
number
; }
) =>
{
availableSpots
:
Spot
[];
positions
:
Position
[];
containerHeight
:
number
; };