UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

9 lines (8 loc) 269 B
import { Point } from "./type"; export interface IgPoint { x: number; y: number; } export declare function isPoint(p: any): boolean; export declare function pointFromLiteral(p: IgPoint): Point; export declare function pointToLiteral(p: Point): IgPoint;