UNPKG

@nativescript-community/ui-htmlcanvasapi

Version:

An HTML Canvas API implementation on top of android and iOS native APIs

15 lines (14 loc) 300 B
interface IDOMPoint { x: number; y: number; z: number; w: number; } declare class NSDOMPoint implements IDOMPoint { x: number; y: number; z: number; w: number; static fromPoint(sourcePoint: NSDOMPoint | IDOMPoint): NSDOMPoint; } export { NSDOMPoint as DOMPoint };