UNPKG

js-angusj-clipper

Version:

Polygon and line clipping and offsetting library for Javascript / Typescript - a port of Angus Johnson's clipper to WebAssembly / Asm.JS

7 lines (6 loc) 207 B
import { NativeDeletable } from "./NativeDeletable"; export interface NativeVector<T> extends NativeDeletable { size(): number; get(index: number): T; set(index: number, value: T): void; }