UNPKG

jsts

Version:

A JavaScript library of spatial predicates and functions for processing geometry

21 lines (20 loc) 577 B
/** * @see http://download.oracle.com/javase/6/docs/api/java/util/List.html */ export default class List extends Collection { /** * Returns the element at the specified position in this list. * @param {number} index * @return {Object} */ get(): any; /** * Replaces the element at the specified position in this list with the * specified element (optional operation). * @param {number} index * @param {Object} e * @return {Object} */ set(): any; } import Collection from './Collection.js';