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>

47 lines (46 loc) 1.4 kB
/** * @namespace Konva */ export declare const version = "@@version"; export declare const ids: {}; export declare const names: {}; export declare const shapes: {}; export declare const isBrowser: boolean; export declare const isUnminified: boolean; export declare const dblClickWindow = 400; /** * returns whether or not drag and drop is currently active * @method * @memberof Konva */ export declare const isDragging: () => any; /** * returns whether or not a drag and drop operation is ready, but may * not necessarily have started * @method * @memberof Konva */ export declare const isDragReady: () => boolean; export declare const _addId: (node: any, id: any) => void; export declare const _removeId: (id: string) => void; export declare const _addName: (node: any, name: any) => void; export declare const _removeName: (name: any, _id: any) => void; export declare const getAngle: (angle: any) => any; export declare const _detectIE: (ua: any) => number | false; export declare const _parseUA: (userAgent: any) => { browser: any; version: any; isIE: number | boolean; mobile: boolean; ieMobile: boolean; }; export declare const glob: any; export declare const UA: { browser: any; version: any; isIE: number | boolean; mobile: boolean; ieMobile: boolean; }; export declare const document: any; export declare const getGlobalKonva: () => any;