UNPKG

@foblex/core

Version:

A core library providing a set of utilities and interfaces for various projects.

5 lines (4 loc) 173 B
import { IPoint, IRect } from '../../types'; export interface ICanFitToParent { fitToParent(rect: IRect, parentRect: IRect, points: IPoint[], toCenter: IPoint): void; }