import { NativeDeletable } from "./NativeDeletable"; import { NativePath } from "./NativePath"; import { NativeVector } from "./NativeVector"; export interface NativePolyNode extends NativeDeletable { contour: NativePath; childs: NativeVector; getParent(): NativePolyNode | null; getNext(): NativePolyNode | null; isHole(): boolean; isOpen(): boolean; childCount(): number; index: number; }