UNPKG

konva

Version:

<p align="center"> <img src="https://raw.githubusercontent.com/konvajs/konvajs.github.io/master/apple-touch-icon-180x180.png" alt="Konva logo" height="180" /> </p>

15 lines (14 loc) 253 B
export interface GetSet<Type, This> { (this: This): Type; (this: This, v: Type): This; } export interface Vector2d { x: number; y: number; } export interface IRect { x: number; y: number; width: number; height: number; }