UNPKG

petals-ui

Version:
12 lines (11 loc) 279 B
import { DirectionType, LooseSize } from '../../basic'; interface ITileComponent { direction: DirectionType; width: LooseSize; height: LooseSize; } interface ITileCellComponent { width: number; height: number; } export { ITileComponent, ITileCellComponent };