UNPKG

js-draw

Version:

Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.

5 lines (4 loc) 211 B
import Pointer from '../Pointer'; /** Returns the smallest ID not used by the pointers in the given list. */ declare const getUniquePointerId: (pointers: Pointer[]) => number; export default getUniquePointerId;